2018-09-27 08:15:41 -05:00
|
|
|
module.exports = function (config, grunt) {
|
2017-10-23 02:06:08 -05:00
|
|
|
'use strict';
|
2017-10-22 00:03:26 -05:00
|
|
|
|
2017-10-01 13:02:25 -05:00
|
|
|
return {
|
2018-10-30 04:25:53 -05:00
|
|
|
tslint: {
|
|
|
|
command: 'node ./node_modules/tslint/lib/tslintCli.js -c tslint.json --project ./tsconfig.json',
|
|
|
|
src: ['public/app/**/*.ts*'],
|
|
|
|
},
|
|
|
|
tsc: {
|
|
|
|
command: 'yarn tsc --noEmit',
|
|
|
|
src: ['public/app/**/*.ts*'],
|
|
|
|
},
|
2018-09-18 05:07:53 -05:00
|
|
|
jest: 'node ./node_modules/jest-cli/bin/jest.js --maxWorkers 2',
|
2017-10-23 05:32:58 -05:00
|
|
|
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
2017-10-01 13:02:25 -05:00
|
|
|
};
|
|
|
|
};
|