diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-01-21 01:30:30 +1100 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2020-01-20 09:30:30 -0500 |
commit | 60b53fd6b6dc2af83a64c332b9f3a1926f43d631 (patch) | |
tree | 4f4ef1aadb8c79ef2319d728b9d5b132af40ef83 /deno_typescript/compiler_main.js | |
parent | 23e67eb5153bd26dbae471b27dc6a21a6d283b0b (diff) |
Use globalThis to reference global scope (#3719)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'deno_typescript/compiler_main.js')
-rw-r--r-- | deno_typescript/compiler_main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deno_typescript/compiler_main.js b/deno_typescript/compiler_main.js index 5cf44b689..94b38e070 100644 --- a/deno_typescript/compiler_main.js +++ b/deno_typescript/compiler_main.js @@ -144,7 +144,7 @@ class Host { * @param {ts.CompilerOptions} _options */ getDefaultLibFileName(_options) { - return "lib.deno_core.d.ts"; + return "lib.esnext.d.ts"; } getDefaultLibLocation() { |