Commit 2f46c566 by Gabriel Nepomuceno

removing type validation because copy needs to be done first

parent 7ff07aa7
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
"url": "http://github.com/grafana/grafana.git" "url": "http://github.com/grafana/grafana.git"
}, },
"devDependencies": { "devDependencies": {
"@types/rx": "^2.5.34",
"autoprefixer": "^6.4.0", "autoprefixer": "^6.4.0",
"es6-promise": "^3.0.2", "es6-promise": "^3.0.2",
"es6-shim": "^0.35.1", "es6-shim": "^0.35.1",
...@@ -51,7 +50,7 @@ ...@@ -51,7 +50,7 @@
"mocha": "3.2.0", "mocha": "3.2.0",
"phantomjs-prebuilt": "^2.1.13", "phantomjs-prebuilt": "^2.1.13",
"reflect-metadata": "0.1.8", "reflect-metadata": "0.1.8",
"rxjs": "5.0.0-rc.5", "rxjs": "^5.0.0-rc.5",
"sass-lint": "^1.10.2", "sass-lint": "^1.10.2",
"systemjs": "0.19.41", "systemjs": "0.19.41",
"zone.js": "^0.7.2" "zone.js": "^0.7.2"
......
module.exports = function(config) { module.exports = function(config) {
'use strict' 'use strict'
return { 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" tscompile: "node ./node_modules/typescript/lib/tsc.js -p tsconfig.json"
}; };
}; };
...@@ -14,7 +14,8 @@ ...@@ -14,7 +14,8 @@
"noImplicitReturns":false, "noImplicitReturns":false,
"noImplicitThis":false, "noImplicitThis":false,
"noImplicitUseStrict":false, "noImplicitUseStrict":false,
"noUnusedLocals":false "noUnusedLocals":false,
"moduleResolution": "classic"
}, },
"include": [ "include": [
"public/app/**/*.ts" "public/app/**/*.ts"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment