minor change to #6904

This commit is contained in:
Torkel Ödegaard 2016-12-12 11:38:10 +01:00
parent 815722c3cc
commit 3bb9d47a45
2 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@ module.exports = function(config) {
'use strict' 'use strict'
return { return {
tslint : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json", tslint : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json",
tscompile: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json" tscompile: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json --diagnostics"
}; };
}; };