Skip to content

Commit

Permalink
#25 set compilation target as es2017 (es8) instead of es6
Browse files Browse the repository at this point in the history
  • Loading branch information
wilk committed Nov 4, 2018
1 parent 71a1d08 commit a7b0d2a
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,16 @@
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"target": "es2017",
"noImplicitAny": false,
"moduleResolution": "node",
"sourceMap": false,
"outDir": "dist",
"declaration": true,
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*"
]
"*": ["node_modules/*"]
}
},
"include": [
"src/**/*"
]
"include": ["src/**/*"]
}

0 comments on commit a7b0d2a

Please sign in to comment.