mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
removing type validation because copy needs to be done first
This commit is contained in:
parent
7ff07aa7b1
commit
2f46c56672
@ -10,7 +10,6 @@
|
||||
"url": "http://github.com/grafana/grafana.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/rx": "^2.5.34",
|
||||
"autoprefixer": "^6.4.0",
|
||||
"es6-promise": "^3.0.2",
|
||||
"es6-shim": "^0.35.1",
|
||||
@ -51,7 +50,7 @@
|
||||
"mocha": "3.2.0",
|
||||
"phantomjs-prebuilt": "^2.1.13",
|
||||
"reflect-metadata": "0.1.8",
|
||||
"rxjs": "5.0.0-rc.5",
|
||||
"rxjs": "^5.0.0-rc.5",
|
||||
"sass-lint": "^1.10.2",
|
||||
"systemjs": "0.19.41",
|
||||
"zone.js": "^0.7.2"
|
||||
|
@ -1,7 +1,7 @@
|
||||
module.exports = function(config) {
|
||||
'use strict'
|
||||
return {
|
||||
tslint : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json --type-check",
|
||||
tslint : "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json",
|
||||
tscompile: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json"
|
||||
};
|
||||
};
|
||||
|
@ -14,7 +14,8 @@
|
||||
"noImplicitReturns":false,
|
||||
"noImplicitThis":false,
|
||||
"noImplicitUseStrict":false,
|
||||
"noUnusedLocals":false
|
||||
"noUnusedLocals":false,
|
||||
"moduleResolution": "classic"
|
||||
},
|
||||
"include": [
|
||||
"public/app/**/*.ts"
|
||||
|
Loading…
Reference in New Issue
Block a user