zwischenstand

This commit is contained in:
2025-10-02 09:03:39 +00:00
parent 099530b7c8
commit f3dc0dc9bd
52 changed files with 994 additions and 5602 deletions

View File

@@ -1,11 +1,16 @@
{
"extends": "@tsconfig/svelte/tsconfig.json",
"include": ["frontend/src/**/*", "types/**/*", "./../../cms/tibi-types", "api/**/*"],
"include": [
"frontend/src/**/*",
"types/**/*",
"./../../cms/tibi-types"
],
"compilerOptions": {
"module": "esnext",
"typeRoots": ["./node_modules/@types", "./types"],
"typeRoots": [
"./node_modules/@types",
"./types"
],
"target": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
@@ -16,10 +21,14 @@
"useDefineForClassFields": true,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": true,
"allowJs": true,
"checkJs": true,
"checkJs": false,
"strictNullChecks": false,
"noUnusedLocals": true
"noUnusedLocals": true,
"paths": {
"cryptcha": [
"./types/cryptcha"
]
}
}
}