build: add frontend TypeScript toolchain

This commit is contained in:
sjg
2026-08-01 11:52:47 +02:00
parent 860760ecfc
commit 888f793eb8
56 changed files with 43175 additions and 23 deletions
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"useUnknownInCatchVariables": true,
"allowJs": true,
"checkJs": false,
"noEmit": true,
"lib": ["ES2022", "DOM"],
"types": []
},
"include": ["src/**/*.ts", "src/**/*.js"]
}