add first working version

This commit is contained in:
2026-08-17 18:11:42 +02:00
parent 160ed5e409
commit 3c396988a2
12 changed files with 1927 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"lib": ["ES2020"],
"outDir": "out",
"rootDir": "src",
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", ".vscode-test"]
}