Skip to content

Commit

Permalink
fix(tsconfig): Change TS compiler target to ES5 for browser compati…
Browse files Browse the repository at this point in the history
…bility

- Changes TS compiler target to ES5 from ESNext to prevent incompatibility issues on old browsers

Related issues: #13
  • Loading branch information
jamcry committed Aug 25, 2020
1 parent 9323efa commit b5f5e5e
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
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"target": "esnext",
"target": "es5",
"lib": ["ESNext"],
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
Expand Down

0 comments on commit b5f5e5e

Please sign in to comment.