exec.js 262 B

1234567
  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. };
  7. };