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

View File

@@ -1,13 +1,5 @@
{
"compilerOptions": {
"allowJs": true
, "target": "es5"
, "noImplicitAny": true
, "esModuleInterop": true
, "resolveJsonModule": true
, "removeComments": true
, "downlevelIteration": true
}
"extends": "../common/tsconfig"
, "include": [
"./src/**/*"
, "./@types/**/*"

View File

@@ -1,5 +1,5 @@
{
"extends": [
"../tslintCommon.json"
"../common/tslint.json"
]
}