diff --git a/src/index.tsx b/src/index.tsx index 4f82d79..f07c29e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -36,5 +36,5 @@ class TimerView extends React.Component<{appState: AppState}, {}> { } }; -const appState = new AppState(); +const appState = new AppState(); ReactDOM.render(, document.getElementById('root')); diff --git a/tsconfig.json b/tsconfig.json index 3a8b2f1..c3bd76e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,8 @@ { "compilerOptions": { "target": "es5", - "module": "commonjs", - "moduleResolution": "node", - "declaration": false, - "noImplicitAny": false, "removeComments": true, "experimentalDecorators": true, - "noLib": false, "jsx": "react", "outDir": "dist" },