first commit

This commit is contained in:
Sergo
2023-07-29 21:10:00 +03:00
commit 27efd26d6c
49 changed files with 5490 additions and 0 deletions

24
tsconfig.json Normal file
View File

@@ -0,0 +1,24 @@
{
"ts-node": {
"files": true
},
"compilerOptions": {
"target": "ES2022",
"lib": [
"ES2022",
],
"module": "commonjs",
"outDir": "./lib",
"rootDir": "./src",
"declaration": true,
"strict": true,
"esModuleInterop": true,
"sourceMap": true
},
"include": [
"src"
],
"exclude": [
"test"
]
}