Initial commit

This commit is contained in:
2023-05-24 00:23:46 +02:00
commit 7f52850b2e
30 changed files with 5785 additions and 0 deletions

18
tsconfig.json Normal file
View File

@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*"
]
},
"removeComments": true
},
"include": [
"src/**/*"
]
}