From 82247443a2fa78eb68bc28bdcaa8acbf82cb3154 Mon Sep 17 00:00:00 2001 From: Evgeny Samsonov Date: Sat, 23 Dec 2017 22:15:23 -0500 Subject: [PATCH 1/2] Remove extra space --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')); From 0c59dfae91cf4ffe377150379390214405167772 Mon Sep 17 00:00:00 2001 From: Evgeny Samsonov Date: Sat, 23 Dec 2017 22:22:16 -0500 Subject: [PATCH 2/2] Remove unnecessary compiler options --- tsconfig.json | 5 ----- 1 file changed, 5 deletions(-) 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" },