Merge pull request #15 from frooeyzanny/master

Remove extra space and remove unnecessary compiler options
This commit is contained in:
Michel Weststrate 2017-12-27 12:19:13 +01:00 committed by GitHub
commit 25c1695969
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

View file

@ -36,5 +36,5 @@ class TimerView extends React.Component<{appState: AppState}, {}> {
} }
}; };
const appState = new AppState(); const appState = new AppState();
ReactDOM.render(<TimerView appState={appState} />, document.getElementById('root')); ReactDOM.render(<TimerView appState={appState} />, document.getElementById('root'));

View file

@ -1,13 +1,8 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es5", "target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"declaration": false,
"noImplicitAny": false,
"removeComments": true, "removeComments": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"noLib": false,
"jsx": "react", "jsx": "react",
"outDir": "dist" "outDir": "dist"
}, },