Skip to content

Commit d9edbee

Browse files
committed
Use TypeScript 1.6
1 parent 16f907c commit d9edbee

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Diff for: gruntfile.js

+6
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ module.exports = function(grunt) {
4040
outDir: outDir,
4141
options: {
4242
fast: 'never',
43+
44+
// Resolve non-relative modules like "ui/styling/style"
45+
// based on the project root (not on node_modules which
46+
// is the typescript 1.6+ default)
47+
additionalFlags: '--moduleResolution classic',
48+
4349
module: "commonjs",
4450
target: "es5",
4551
sourceMap: true,

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"grunt-shell": "1.1.2",
3232
"grunt-file": "1.0.2",
3333
"grunt-env": "0.4.4",
34-
"grunt-ts": "4.2.0",
35-
"typescript": "1.5.3"
34+
"grunt-ts": "5.0.0-beta.5",
35+
"typescript": "1.6.2"
3636
},
3737
"typescript": {
3838
"definitions": [

0 commit comments

Comments
 (0)