Upgrade to typescript 1.6 and grunt-ts 5.0.0-beta.5

This commit is contained in:
Hristo Deshev
2015-09-17 18:48:02 +03:00
committed by Vladimir Enchev
parent 6ee725cea1
commit ccbd00dac8
2 changed files with 8 additions and 2 deletions

View File

@@ -309,6 +309,12 @@ module.exports = function(grunt) {
outDir: localCfg.outModulesDir,
options: {
fast: 'never',
// Resolve non-relative modules like "ui/styling/style"
// based on the project root (not on node_modules which
// is the typescript 1.6+ default)
additionalFlags: '--moduleResolution classic',
module: "commonjs",
target: "es5",
sourceMap: false,

View File

@@ -19,12 +19,12 @@
"grunt-exec": "0.4.6",
"grunt-multi-dest": "1.0.0",
"grunt-shell": "1.1.2",
"grunt-ts": "4.2.0",
"grunt-ts": "5.0.0-beta.5",
"grunt-tslint": "2.4.0",
"mocha": "2.2.5",
"grunt-simple-mocha": "0.4.0",
"grunt-env": "0.4.4",
"chai": "3.2.0",
"typescript": "1.5.3"
"typescript": "1.6.2"
}
}