Skip to content

Commit

Permalink
fix(build): change build target to ES5 (#211)
Browse files Browse the repository at this point in the history
To support projects that doesn't transpile node_modules we changed the target build to ES5
  • Loading branch information
markov00 authored May 21, 2019
1 parent 106551a commit 39b727e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@
"strict": true,
"esModuleInterop": true,
"module": "es6",
"target": "es6",
"target": "es5",
"lib": ["esnext", "dom"],
"moduleResolution": "node",
"jsx": "react",
"allowJs": false,
"skipLibCheck": true
"skipLibCheck": true,
"downlevelIteration": true
},
"include": ["src/**/*"],
"exclude": ["**/*.test.*"]
Expand Down

0 comments on commit 39b727e

Please sign in to comment.