3
0
mirror of https://github.com/grafana/grafana.git synced 2025-02-25 18:55:37 -06:00
grafana/tasks/options/exec.js
2016-12-09 21:53:00 +00:00

8 lines
262 B
JavaScript

module.exports = function(config) {
'use strict'
return {
tslint : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json --type-check",
tscompile: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json"
};
};