removing type validation because copy needs to be done first

This commit is contained in:
Gabriel Nepomuceno 2016-12-09 23:41:07 +00:00
parent 7ff07aa7b1
commit 2f46c56672
3 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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"
};
};

View File

@ -14,7 +14,8 @@
"noImplicitReturns":false,
"noImplicitThis":false,
"noImplicitUseStrict":false,
"noUnusedLocals":false
"noUnusedLocals":false,
"moduleResolution": "classic"
},
"include": [
"public/app/**/*.ts"