Skip to content

Commit c1e52d1

Browse files
authored
Merge pull request #2 from vesapupovci/master
Change target to es5 because the library doesn't work on IE
2 parents 08e85f5 + c658b98 commit c1e52d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"setup": "npm install -g semantic-release-cli && semantic-release-cli setup",
2323
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
2424
"prebuild": "rimraf dist",
25-
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
25+
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es5 --theme minimal --mode file src",
2626
"start": "rollup -c rollup.config.ts -w",
2727
"test": "jest --coverage",
2828
"test:watch": "jest --coverage --watch",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"moduleResolution": "node",
4-
"target": "es6",
4+
"target": "es5",
55
"module": "es2015",
66
"lib": [
77
"es2015",

0 commit comments

Comments
 (0)