feat: add basic type checking

This commit is contained in:
EvolutionX
2022-06-22 11:58:30 +05:30
parent e86e3a7e67
commit eb85a7a8f2
10 changed files with 85 additions and 15 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "NodeNext",
"lib": ["es2017", "dom"],
"allowJs": true,
"checkJs": true,
"noEmit": true,
"strict": false,
"noImplicitThis": true,
"alwaysStrict": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
"include": ["test", "src"]
}