mirror of https://github.com/grafana/grafana.git
7 lines
192 B
JavaScript
7 lines
192 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 --type-check",
|
||
|
};
|
||
|
};
|