Skip to content

Commit

Permalink
Downgrade ECMAScript target version to ensure compatibility with IE11 (
Browse files Browse the repository at this point in the history
…fixes #8)
  • Loading branch information
jcsmorais committed Dec 27, 2018
1 parent 4fdb3c1 commit 42632fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["es6"],
"module": "commonjs",
"outDir": "dist",
"sourceMap": true,
"strict": true,
"strictNullChecks": false,
"target": "es6"
"target": "es5"
}
}

0 comments on commit 42632fb

Please sign in to comment.