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.build.json | |
| parent | 2d18d177f48285eb123e7da8680fc00e7a6fe19c (diff) | |
refactor(web): migrate browser code to TypeScript
Diffstat (limited to 'tsconfig.build.json')
| -rw-r--r-- | tsconfig.build.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tsconfig.build.json b/tsconfig.build.json new file mode 100644 index 0000000..e8fd8a4 --- /dev/null +++ b/tsconfig.build.json @@ -0,0 +1,13 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "allowImportingTsExtensions": false, + "noEmit": false, + "noEmitOnError": true, + "outDir": "web/static", + "rootDir": "web/frontend", + "sourceMap": false + }, + "include": ["web/frontend/**/*.ts", "web/frontend/**/*.d.ts"], + "exclude": ["web/frontend/**/*.test.ts"] +} |