Share tsconfig settings

This commit is contained in:
hensm
2019-04-12 07:19:00 +01:00
committed by Matt Hensman
parent 9c78a2c62c
commit 40d6b55332
9 changed files with 20 additions and 23 deletions

11
common/tsconfig.json Normal file
View File

@@ -0,0 +1,11 @@
{
"compilerOptions": {
"allowJs": true
, "esModuleInterop": true
, "module": "commonjs"
, "noImplicitAny": true
, "removeComments": true
, "resolveJsonModule": true
, "target": "es6"
}
}