summaryrefslogtreecommitdiffstats
path: root/html/tsconfig.json
blob: 144fd51f4fe6b01f677988cdc13fdbb41ea9a354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "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,
    "lib": ["es2019", "dom"],
  },
  "include": [
    "src/**/*.tsx",
    "src/**/*.ts"
  ]
}