Skip to content

Commit 8448855

Browse files
committedMar 1, 2017
Upgrade to TypeScript 2.2
1 parent d42cb4d commit 8448855

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed
 

‎package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@
2121
"@angular/platform-browser": "~2.4.3",
2222
"@angular/platform-browser-dynamic": "~2.4.3",
2323
"@angular/router": "~3.4.3",
24-
"nativescript-angular": "~1.4.0",
24+
"nativescript-angular": "~1.4.1",
2525
"nativescript-intl": "~0.0.10",
2626
"reflect-metadata": "~0.1.8",
2727
"rxjs": "~5.0.1",
28-
"tns-core-modules": "~2.5.0"
28+
"tns-core-modules": "~2.5.0",
29+
"zone.js": "~0.7.2"
2930
},
3031
"devDependencies": {
3132
"babel-traverse": "6.8.0",
@@ -36,6 +37,6 @@
3637
"nativescript-dev-android-snapshot": "~0.0.6",
3738
"nativescript-dev-typescript": "~0.3.7",
3839
"typescript": "~2.1.5",
39-
"zone.js": "~0.7.2"
40+
"typescript": "~2.2.1"
4041
}
4142
}

‎tsconfig.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
"experimentalDecorators": true,
66
"emitDecoratorMetadata": true,
77
"noEmitHelpers": true,
8-
"noEmitOnError": true
8+
"noEmitOnError": true,
9+
"lib": [
10+
"es6",
11+
"dom"
12+
]
913
},
1014
"exclude": [
1115
"node_modules",

0 commit comments

Comments
 (0)
Please sign in to comment.