Skip to content

Commit

Permalink
build(tsc): add downlevelIteration:true
Browse files Browse the repository at this point in the history
  • Loading branch information
lifenautjoe committed Oct 16, 2017
1 parent c025e0a commit 127705d
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"compilerOptions": {
"downlevelIteration": true,
"moduleResolution": "node",
"target": "es5",
"module":"es2015",
"lib": ["es2015", "es2016", "es2017", "dom"],
"module": "es2015",
"lib": [
"es2015",
"es2016",
"es2017",
"dom"
],
"strict": true,
"sourceMap": true,
"declaration": true,
Expand All @@ -13,10 +19,10 @@
"declarationDir": "dist/types",
"outDir": "compiled",
"typeRoots": [
"node_modules/@types"
"node_modules/@types"
]
},
"include": [
"src"
]
}
}

0 comments on commit 127705d

Please sign in to comment.