This commit is contained in:
2021-11-09 23:38:07 -06:00
parent 3be766dfde
commit 6aaac56035
6 changed files with 676 additions and 78 deletions

View File

@@ -1,11 +1,16 @@
{
"compilerOptions": {
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"strict": true,
"strictNullChecks": true,
"lib": [
"ESNext"
]
}
"lib": ["ESNext"],
"sourceMap": true,
"moduleResolution": "node",
"outDir": "target"
},
"include": ["src/**/*"]
}