Initial commit

This commit is contained in:
2023-02-24 01:41:06 +01:00
commit 49cbb85e7b
21 changed files with 5107 additions and 0 deletions

20
tsconfig.json Normal file
View File

@ -0,0 +1,20 @@
{
"compilerOptions": {
"noImplicitAny": true,
"sourceMap": true,
"outDir": "dist",
"target": "ES5",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"suppressImplicitAnyIndexErrors": true
},
"include": [
"./src/"
],
"exclude": [
"node_modules"
]
}