summaryrefslogtreecommitdiff
path: root/js/compiler.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2018-09-01 10:47:13 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-09-01 15:06:03 -0400
commitb3dac82887508b6d5098b970da40a5ba9420f797 (patch)
treeec4d565d1372488aa5e6ee8b00505647461edbbf /js/compiler.ts
parentf83aee02e66214853a008ebe4b5141405ac3a950 (diff)
Remove lib.globals.d.ts
Diffstat (limited to 'js/compiler.ts')
-rw-r--r--js/compiler.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/compiler.ts b/js/compiler.ts
index 28fe8be8f..e75bc48d8 100644
--- a/js/compiler.ts
+++ b/js/compiler.ts
@@ -641,7 +641,7 @@ export class DenoCompiler implements ts.LanguageServiceHost {
getDefaultLibFileName(): string {
this._log("getDefaultLibFileName()");
- const moduleSpecifier = "lib.globals.d.ts";
+ const moduleSpecifier = "globals.d.ts";
const moduleMetaData = this.resolveModule(moduleSpecifier, ASSETS);
return moduleMetaData.fileName;
}