diff options
Diffstat (limited to 'html/tsconfig.json')
-rw-r--r-- | html/tsconfig.json | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/html/tsconfig.json b/html/tsconfig.json index 0a4d380..b2ce557 100644 --- a/html/tsconfig.json +++ b/html/tsconfig.json @@ -1,20 +1,15 @@ { + "extends": "./node_modules/gts/tsconfig-google.json", "compilerOptions": { - "target": "es2015", - "module": "es2015", - "lib": [ - "es2015", - "dom" - ], - "allowJs": true, - "jsx": "react", - "jsxFactory": "h", - "sourceMap": true, "moduleResolution": "node", "esModuleInterop": true, + "jsx": "react", + "jsxFactory": "h", + "allowJs": true, + "noImplicitAny": false, + "declaration": false, "experimentalDecorators": true, - "noImplicitReturns": true, - "noUnusedParameters": true + "strictPropertyInitialization": false, }, "include": [ "src/**/*.tsx", |