Merge branch 'ErjanGavalji/update-tsc'

This commit is contained in:
Erjan Gavalji
2015-07-28 17:02:37 +03:00
2 changed files with 9 additions and 8 deletions

View File

@ -310,7 +310,8 @@ module.exports = function(grunt) {
declaration: false, declaration: false,
removeComments: "<%= !grunt.option('leavecomments') || '' %>", removeComments: "<%= !grunt.option('leavecomments') || '' %>",
compiler: "node_modules/typescript/bin/tsc", compiler: "node_modules/typescript/bin/tsc",
noEmitOnError: true noEmitOnError: true,
experimentalDecorators: true
} }
}, },
buildNodeTests: { buildNodeTests: {

View File

@ -14,17 +14,17 @@
"license": "Apache-2.0", "license": "Apache-2.0",
"devDependencies": { "devDependencies": {
"grunt": "0.4.5", "grunt": "0.4.5",
"grunt-contrib-clean": "0.5.0", "grunt-contrib-clean": "0.6.0",
"grunt-contrib-copy": "0.5.0", "grunt-contrib-copy": "0.8.0",
"grunt-exec": "0.4.5", "grunt-exec": "0.4.6",
"grunt-multi-dest": "1.0.0", "grunt-multi-dest": "1.0.0",
"grunt-shell": "1.1.2", "grunt-shell": "1.1.2",
"grunt-ts": "4.0.1", "grunt-ts": "4.2.0",
"grunt-tslint": "2.3.1-beta", "grunt-tslint": "2.4.0",
"mocha": "2.2.5", "mocha": "2.2.5",
"grunt-simple-mocha": "0.4.0", "grunt-simple-mocha": "0.4.0",
"grunt-env": "0.4.4", "grunt-env": "0.4.4",
"chai": "2.3.0", "chai": "3.2.0",
"typescript": "1.5.0-beta" "typescript": "1.5.3"
} }
} }