Skip to content

Commit

Permalink
refactor: tsconfig inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
antonybudianto committed Apr 27, 2017
1 parent f9e4171 commit fd572fd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 35 deletions.
23 changes: 3 additions & 20 deletions src/tsconfig-aot.json
@@ -1,30 +1,13 @@
{
"extends": "../tsconfig",
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "lib",
"rootDir": ".",
"mapRoot": "",
"baseUrl": "",
"skipLibCheck": true,
"typeRoots": [
"../node_modules/@types"
]
"baseUrl": ""
},
"exclude": [
"**/*.spec.ts",
"main.ts"
],
"awesomeTypescriptLoaderOptions": {
"useWebpackText": true,
"forkChecker": true,
"useCache": true
}
]
}
18 changes: 3 additions & 15 deletions tsconfig-e2e.json
@@ -1,18 +1,6 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"node_modules"
]
"module": "commonjs"
}
}

0 comments on commit fd572fd

Please sign in to comment.