0.1.0 initial commit

This commit is contained in:
Yusur 2025-01-17 10:28:24 +01:00
commit 6b88aff1e7
14 changed files with 1559 additions and 0 deletions

14
tsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"rootDir": "src/",
"outDir": "build/",
"esModuleInterop": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules/",
"build/"
]
}