Skip to content
This repository was archived by the owner on Dec 1, 2019. It is now read-only.

Commit b211544

Browse files
author
Stanislav Panferov
committed
feat(*): bump typescript
1 parent 45b201e commit b211544

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
"grunt-shell": "^1.1.2",
4343
"grunt-ts": "^3.0.0",
4444
"load-grunt-tasks": "^0.6.0",
45-
"typescript": "^1.7.0-dev.20150917"
45+
"typescript": "^1.7.0-dev.20151006"
4646
}
4747
}

src/helpers.ts

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ export function parseOptionTarget(target: string, tsInst: typeof ts): ts.ScriptT
4444
return tsInst.ScriptTarget.ES5;
4545
case 'es6':
4646
return tsInst.ScriptTarget.ES6;
47+
case 'latest':
48+
return tsInst.ScriptTarget.Latest;
4749
}
4850
}
4951

0 commit comments

Comments
 (0)