first row

This commit is contained in:
2025-10-02 17:27:06 +00:00
parent 9409de9103
commit eefa562cb1
29 changed files with 779 additions and 739 deletions

View File

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