config() update typescript configuration

This commit is contained in:
Kamil Myśliwiec 2019-01-18 14:25:04 +01:00
parent 71d73aa107
commit 399acf1941
No known key found for this signature in database
GPG Key ID: 75F02E89A1A1092B
2 changed files with 2 additions and 7 deletions

View File

@ -1,5 +1,4 @@
{
"extends": "./tsconfig.json",
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
"exclude": ["node_modules", "test", "**/*spec.ts"]
}

View File

@ -2,16 +2,12 @@
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es6",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./"
"outDir": "./dist"
},
"exclude": ["node_modules"]
}