mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
8 lines
262 B
JavaScript
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"
|
|
};
|
|
};
|