Add TypeScript checks, fix a few issues

This commit is contained in:
Ingvar Stepanyan
2021-07-14 15:29:17 +00:00
parent ce0372e179
commit 37017f6c3f
7 changed files with 367 additions and 287 deletions

10
tsconfig.json Normal file
View File

@@ -0,0 +1,10 @@
{
"compilerOptions": {
"checkJs": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true
},
"exclude": ["libapi.*"]
}