diff options
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"] } |