Skip to content

Commit

Permalink
Enable skipLibCheck in rover (#4689)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasc committed Sep 4, 2019
1 parent 6feb841 commit 19b9670
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions rover/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"compilerOptions": {
"lib": [
"es5",
"es6"
],
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./build",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"exclude": [
"compilerOptions": {
"lib": [
"es5",
"es6"
],
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./build",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"skipLibCheck": true
},
"exclude": [
"node_modules",
"build",
"__tests__"
]
}
}

0 comments on commit 19b9670

Please sign in to comment.