exec.js 360 B

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