mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 00:37:04 -06:00
88f36cbd22
- was not covered by TS lint - TS errors are only noticed in broken builds - added grunt task to run `tsc --noEmit`
11 lines
379 B
JavaScript
11 lines
379 B
JavaScript
module.exports = function (config, grunt) {
|
|
'use strict';
|
|
|
|
return {
|
|
tslint: 'node ./node_modules/tslint/lib/tslintCli.js -c tslint.json --project ./tsconfig.json',
|
|
tsc: 'yarn tsc --noEmit',
|
|
jest: 'node ./node_modules/jest-cli/bin/jest.js --maxWorkers 2',
|
|
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
|
};
|
|
};
|