diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-09-03 09:42:34 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-09-03 09:42:34 +0300 |
| commit | 9afd15d201a3a725af6662a6d8e81a79e71ac137 (patch) | |
| tree | 9d715ecf62cb1795ac94ecdb71aac1d3b380576a /frontend/tsconfig.json | |
| parent | refactor: port to typescript (diff) | |
| download | lphub-9afd15d201a3a725af6662a6d8e81a79e71ac137.tar.gz lphub-9afd15d201a3a725af6662a6d8e81a79e71ac137.tar.bz2 lphub-9afd15d201a3a725af6662a6d8e81a79e71ac137.zip | |
refactor: dont ignore config file, small fix in profile
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 | } | ||