mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 17:42:12 +08:00
10 lines
504 B
JavaScript
10 lines
504 B
JavaScript
module.exports = function(config, grunt) {
|
|
'use strict'
|
|
return {
|
|
tslint : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json",
|
|
tslintfile : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json <%= tslint.source.files.src %>",
|
|
tscompile: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json --diagnostics",
|
|
tswatch: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json --diagnostics --watch",
|
|
};
|
|
};
|