exec.js 504 B

123456789
  1. module.exports = function(config, grunt) {
  2. 'use strict'
  3. return {
  4. tslint : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json",
  5. tslintfile : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json <%= tslint.source.files.src %>",
  6. tscompile: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json --diagnostics",
  7. tswatch: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json --diagnostics --watch",
  8. };
  9. };