From da816e6db7f656ef9f8bf9dd48e40de7f6465779 Mon Sep 17 00:00:00 2001 From: trevyn Date: Tue, 24 Aug 2021 18:24:52 +0400 Subject: [PATCH] add `BigInt` as known global (#6671) --- src/compiler/utils/names.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/utils/names.ts b/src/compiler/utils/names.ts index 8afc80958f..8df2a7247b 100644 --- a/src/compiler/utils/names.ts +++ b/src/compiler/utils/names.ts @@ -4,6 +4,7 @@ import full_char_code_at from './full_char_code_at'; export const globals = new Set([ 'alert', 'Array', + 'BigInt', 'Boolean', 'clearInterval', 'clearTimeout',