feat: initial commit

This commit is contained in:
Joao P Dubas
2023-09-14 00:40:54 +00:00
commit 895305f1a3
19 changed files with 22389 additions and 0 deletions

11
tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"compilerOptions": {
"incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"module": "commonjs", /* Specify what module code is generated. */
"outDir": "./dist", /* Specify an output folder for all emitted files. */
"strict": true, /* Enable all strict type-checking options. */
"esModuleInterop": true
},
"include": ["src", "test"]
}