typescript rewrite

This commit is contained in:
adrian
2025-10-29 21:52:16 +01:00
parent 591efd8a77
commit d547df999f
7 changed files with 99 additions and 31 deletions

12
tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"outDir": "./dist",
"sourceMap": true,
"strict": true,
"module": "ES6",
"target": "ES6",
"allowJs": false
},
"include": ["*.ts"],
"exclude": ["node_modules", "dist"]
}