feat: initial release

This commit is contained in:
Geoffroy Empain
2020-12-02 15:40:43 +01:00
commit 764c62b6b8
45 changed files with 11052 additions and 0 deletions

20
tsconfig.json Normal file
View File

@ -0,0 +1,20 @@
{
"compilerOptions": {
"incremental": false,
"target": "es2018",
"module": "commonjs",
"moduleResolution": "node",
"lib": ["es2018"],
"sourceMap": true,
"removeComments": true,
"strictPropertyInitialization": false,
"strict": false,
"noImplicitAny": false,
"baseUrl": "./",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
}
}