diff options
Diffstat (limited to 'frontend/tsconfig.json')
| -rw-r--r-- | frontend/tsconfig.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000..ab0af5e --- /dev/null +++ b/frontend/tsconfig.json | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | { | ||
| 2 | "compilerOptions": { | ||
| 3 | "target": "es5", | ||
| 4 | "lib": [ | ||
| 5 | "dom", | ||
| 6 | "dom.iterable", | ||
| 7 | "esnext" | ||
| 8 | ], | ||
| 9 | "allowJs": true, | ||
| 10 | "skipLibCheck": true, | ||
| 11 | "esModuleInterop": true, | ||
| 12 | "allowSyntheticDefaultImports": true, | ||
| 13 | "strict": true, | ||
| 14 | "forceConsistentCasingInFileNames": true, | ||
| 15 | "noFallthroughCasesInSwitch": true, | ||
| 16 | "strictNullChecks": true, | ||
| 17 | // "allowImportingTsExtensions": false, | ||
| 18 | "module": "esnext", | ||
| 19 | "moduleResolution": "node", | ||
| 20 | "resolveJsonModule": true, | ||
| 21 | "isolatedModules": true, | ||
| 22 | "noEmit": true, | ||
| 23 | "jsx": "react-jsx" | ||
| 24 | }, | ||
| 25 | "include": [ | ||
| 26 | "src" | ||
| 27 | ] | ||
| 28 | } | ||