Add TypeScript toolchain (tsc per-module, build-only)

This commit is contained in:
2026-06-13 21:01:26 +02:00
parent 58008d6f2c
commit 5fd82c78d4
5 changed files with 41 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": true,
"noEmitOnError": true,
"forceConsistentCasingInFileNames": true,
"rootDir": "ts",
"outDir": "games/static/js/dist"
},
"include": ["ts/**/*.ts"]
}