Add basic typescript configuration

This commit is contained in:
Danila Fedorin 2021-08-06 12:59:18 -07:00
parent 3c5b186e31
commit 86242daf3b
1 changed files with 8 additions and 0 deletions

8
tsconfig.json Normal file
View File

@ -0,0 +1,8 @@
{
"compilerOptions": {
"strictNullChecks": true,
"noEmit": true,
"target": "es6"
},
"include": ["src/**/*"],
}