summaryrefslogtreecommitdiff
path: root/tools/ts_library_builder/build_library.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-01-17 09:57:15 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-01-16 17:57:15 -0500
commit00b655add1c83a3924f1e86b51689aa1ed8e5d05 (patch)
tree4728148fa46fee8671f6074215d859c78cdfefd7 /tools/ts_library_builder/build_library.ts
parenteb6f7f901b3b4fd6bfb1596923b50eef8195a131 (diff)
Add globalThis definition to runtime (#1534)
Diffstat (limited to 'tools/ts_library_builder/build_library.ts')
-rw-r--r--tools/ts_library_builder/build_library.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/ts_library_builder/build_library.ts b/tools/ts_library_builder/build_library.ts
index 00e942540..0717de987 100644
--- a/tools/ts_library_builder/build_library.ts
+++ b/tools/ts_library_builder/build_library.ts
@@ -156,6 +156,10 @@ export function mergeGlobal({
// Declare the global variable
addVariableDeclaration(targetSourceFile, globalVarName, interfaceName, true);
+ // `globalThis` accesses the global scope and is defined here:
+ // https://github.com/tc39/proposal-global
+ addVariableDeclaration(targetSourceFile, "globalThis", interfaceName, true);
+
// Add self reference to the global variable
addInterfaceProperty(interfaceDeclaration, globalVarName, interfaceName);