diff options
Diffstat (limited to 'html/tsconfig.json')
-rw-r--r-- | html/tsconfig.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/html/tsconfig.json b/html/tsconfig.json new file mode 100644 index 0000000..b2ce557 --- /dev/null +++ b/html/tsconfig.json @@ -0,0 +1,18 @@ +{ + "extends": "./node_modules/gts/tsconfig-google.json", + "compilerOptions": { + "moduleResolution": "node", + "esModuleInterop": true, + "jsx": "react", + "jsxFactory": "h", + "allowJs": true, + "noImplicitAny": false, + "declaration": false, + "experimentalDecorators": true, + "strictPropertyInitialization": false, + }, + "include": [ + "src/**/*.tsx", + "src/**/*.ts" + ] +} |