diff options
| author | Martin Kagamino Lehoux <martin@lehoux.net> | 2026-08-16 14:23:32 +0200 |
|---|---|---|
| committer | Martin Kagamino Lehoux <martin@lehoux.net> | 2026-08-16 14:23:32 +0200 |
| commit | 53ab332e6d2afe9818914e0026310e4cadcc4202 (patch) | |
| tree | 198d708fa05d4247bdcc0cf2900fdf551d61b7d6 /tsconfig.json | |
| parent | 2d18d177f48285eb123e7da8680fc00e7a6fe19c (diff) | |
refactor(web): migrate browser code to TypeScript
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tsconfig.json b/tsconfig.json index 6ad150d..5944a6c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,14 @@ { "compilerOptions": { - "allowJs": true, - "checkJs": true, + "allowImportingTsExtensions": true, "lib": ["DOM", "ES2022"], "module": "ESNext", "moduleResolution": "Bundler", "noEmit": true, - "strict": false, + "strict": true, "skipLibCheck": true, "target": "ES2022", "types": ["leaflet", "node"] }, - "include": ["web/static/**/*.js", "web/static_test/**/*.js", "web/types/**/*.d.ts"] + "include": ["web/frontend/**/*.ts", "web/frontend/**/*.d.ts", "web/types/**/*.d.ts"] } |