inital ai slop code

This commit is contained in:
2025-08-08 18:04:01 +02:00
parent a31d79bb09
commit 512521e9d0
15 changed files with 1855 additions and 0 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist"
},
"include": ["src/**/*.ts"]
}