Comparing version 1.10.0 to 1.10.1
@@ -384,3 +384,12 @@ 'use strict'; | ||
LanguageServiceHost.prototype.getScriptFileNames = function () { | ||
return Object.keys(this._snapshots).filter(function (filename) { return /\.tsx?/i.test(path.extname(filename)); }); | ||
var result = []; | ||
var defaultLibFileName = this.getDefaultLibFileName(this.getCompilationSettings()); | ||
for (var fileName in this._snapshots) { | ||
if (/\.tsx?/i.test(path.extname(fileName)) | ||
&& fileName !== defaultLibFileName) { | ||
// only ts-files and not lib.d.ts-like files | ||
result.push(fileName); | ||
} | ||
} | ||
return result; | ||
}; | ||
@@ -387,0 +396,0 @@ LanguageServiceHost.prototype.getScriptVersion = function (filename) { |
@@ -0,0 +0,0 @@ /// <reference path="../node_modules/typescript/lib/lib.es6.d.ts"/> |
@@ -8,3 +8,4 @@ 'use strict'; | ||
json: true, | ||
verbose: true | ||
verbose: true, | ||
noFilesystemLookup: true | ||
}; | ||
@@ -11,0 +12,0 @@ Object.freeze(config); |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ 'use strict'; |
{ | ||
"name": "gulp-tsb", | ||
"version": "1.10.0", | ||
"version": "1.10.1", | ||
"author": "Johannes Rieken <johannes.rieken@gmail.com>", | ||
@@ -5,0 +5,0 @@ "description": "A gulp plugin for very fast TypeScript compilation.", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
752
34088