Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 2814e95

Browse files
committed
Fix travis CI
1 parent c9278a5 commit 2814e95

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ before_script:
1515
install:
1616
- npm install
1717
script:
18-
- npm run lint
19-
- npm run compile:tsc
18+
- npm run build

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
},
4444
"devDependencies": {
4545
"@angular/compiler-cli": "~2.4.8",
46-
"@types/core-js": "~0.9.35",
47-
"@types/datatables.net": "~1.10.1",
48-
"@types/jasmine": "~2.5.40",
49-
"@types/jquery": "~2.0.41",
50-
"@types/node": "~6.0.46",
46+
"@types/core-js": "0.9.41",
47+
"@types/datatables.net": "1.10.1",
48+
"@types/jasmine": "2.5.40",
49+
"@types/jquery": "2.0.41",
50+
"@types/node": "6.0.68",
5151
"canonical-path": "0.0.2",
5252
"codelyzer": "~2.0.1",
5353
"concat-cli": "4.0.0",

tsconfig-build.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
"listFiles": false,
1515
"noLib": false
1616
},
17+
"files": [
18+
"node_modules/typescript/lib/lib.es6.d.ts"
19+
],
1720
"include": [
1821
"./index.ts"
1922
],

tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "2.0.0",
33
"compilerOptions": {
44
"target": "es5",
5-
"module": "commonjs",
5+
"module": "es2015",
66
"moduleResolution": "node",
77
"sourceMap": true,
88
"declaration": true,
@@ -14,6 +14,9 @@
1414
"listFiles": false,
1515
"noLib": false
1616
},
17+
"files": [
18+
"node_modules/typescript/lib/lib.es6.d.ts"
19+
],
1720
"include": [
1821
"./index.ts"
1922
]

0 commit comments

Comments
 (0)