Comparing version 1.8.2 to 1.8.3
@@ -446,4 +446,4 @@ 'use strict'; | ||
}; | ||
LanguageServiceHost.prototype.getDefaultLibFileName = function () { | ||
return; | ||
LanguageServiceHost.prototype.getDefaultLibFileName = function (options) { | ||
return path.join(__dirname, '../node_modules/typescript/lib', options.target < 2 /* ES6 */ ? 'lib.d.ts' : 'lib.es6.d.ts'); | ||
}; | ||
@@ -450,0 +450,0 @@ // ---- dependency management |
{ | ||
"name": "gulp-tsb", | ||
"version": "1.8.2", | ||
"author": "Johannes Rieken <johannes.rieken@gmail.com>", | ||
"description": "A gulp plugin for very fast TypeScript compilation.", | ||
"main": "./lib/index", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "mocha lib/tests" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jrieken/gulp-tsb.git" | ||
}, | ||
"keywords": [ | ||
"gulpplugin", | ||
"typescript", | ||
"javascript", | ||
"incremental" | ||
], | ||
"dependencies": { | ||
"typescript": "^1.7.3", | ||
"clone": "^0.2.0", | ||
"gulp-util": "^3.0.1", | ||
"through": "^2.3.6", | ||
"vinyl": "^0.4.3" | ||
}, | ||
"devDependencies": { | ||
"gulp": "^3.8.10", | ||
"mocha": "*" | ||
} | ||
} | ||
"name": "gulp-tsb", | ||
"version": "1.8.3", | ||
"author": "Johannes Rieken <johannes.rieken@gmail.com>", | ||
"description": "A gulp plugin for very fast TypeScript compilation.", | ||
"main": "./lib/index", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "mocha lib/tests" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jrieken/gulp-tsb.git" | ||
}, | ||
"keywords": [ | ||
"gulpplugin", | ||
"typescript", | ||
"javascript", | ||
"incremental" | ||
], | ||
"dependencies": { | ||
"typescript": "^1.7.3", | ||
"clone": "^0.2.0", | ||
"gulp-util": "^3.0.1", | ||
"through": "^2.3.6", | ||
"vinyl": "^0.4.3" | ||
}, | ||
"devDependencies": { | ||
"gulp": "^3.8.10", | ||
"mocha": "*" | ||
} | ||
} |
34074