2018-09-27 15:15:41 +02:00
|
|
|
module.exports = function (config, grunt) {
|
2017-10-23 09:06:08 +02:00
|
|
|
'use strict';
|
2017-10-22 07:03:26 +02:00
|
|
|
|
2017-10-01 20:02:25 +02:00
|
|
|
return {
|
2018-10-30 10:25:53 +01: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 12:07:53 +02:00
|
|
|
jest: 'node ./node_modules/jest-cli/bin/jest.js --maxWorkers 2',
|
2017-10-23 12:32:58 +02:00
|
|
|
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
2017-10-01 20:02:25 +02:00
|
|
|
};
|
|
|
|
|
};
|