first commit

This commit is contained in:
Lukian LEIZOUR 2024-03-10 15:54:28 +01:00
commit 0e9d8b2c24
11 changed files with 535 additions and 0 deletions

11
tsconfig.json Normal file
View file

@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true,
"outDir": "./dist",
"skipLibCheck": true,
"noImplicitAny": true,
},
"include": ["src"],
}