Reupload
Some checks are pending
Run tests / build (6.0, 18.x) (push) Waiting to run

This commit is contained in:
Vyn 2025-06-11 09:50:52 +02:00
commit f265233a06
Signed by: vyn
GPG key ID: E1B2BE34E7A971E7
168 changed files with 31208 additions and 0 deletions

26
web-app/tsconfig.json Normal file
View file

@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
}