Initial commit

This commit is contained in:
2024-07-08 01:47:40 +02:00
commit e2cb4fec4d
9 changed files with 4920 additions and 0 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "ES6",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"outDir": "./dist"
},
"include": ["./src/**/*"]
}