...
1// This config file is used only for editor tooling (like VS Code).
2// Bazel will not use it for building.
3// Don't make any changes here except for overriding the target.
4{
5 "extends": "../../../../../tsconfig.json",
6 "compilerOptions": {
7 "target": "es6",
8 "lib": [
9 "dom",
10 "dom.iterable",
11 "esnext"
12 ],
13 "skipLibCheck": true,
14 "esModuleInterop": true,
15 "allowSyntheticDefaultImports": true,
16 "strict": true,
17 "forceConsistentCasingInFileNames": true,
18 "noFallthroughCasesInSwitch": true,
19 "module": "esnext",
20 "moduleResolution": "node",
21 "resolveJsonModule": true,
22 "isolatedModules": true,
23 "jsx": "react"
24 },
25 "include": [
26 "./*.ts"
27 ],
28}
View as plain text