init tsconfig

This commit is contained in:
2021-08-29 18:30:47 -05:00
parent 00b34850e9
commit 276535d29d
3 changed files with 19 additions and 1 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"lib": [ "ES2020" ],
"rootDir": "src",
"outDir": "dist"
},
"include": [
"src/*",
"src/**/*"
]
}