Browse Source

removing type validation because copy needs to be done first

Gabriel Nepomuceno 9 years ago
parent
commit
2f46c56672
3 changed files with 4 additions and 4 deletions
  1. 1 2
      package.json
  2. 1 1
      tasks/options/exec.js
  3. 2 1
      tsconfig.json

+ 1 - 2
package.json

@@ -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 - 1
tasks/options/exec.js

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

+ 2 - 1
tsconfig.json

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