Partially working api and web

This commit is contained in:
2026-02-07 11:19:36 +01:00
parent a52482256a
commit 699c826bf0
21 changed files with 124861 additions and 0 deletions

21
tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"outDir": "./dist",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noImplicitAny": true,
"strictNullChecks": true
},
"include": ["*.ts"],
"exclude": ["node_modules", "dist"]
}