File tree Expand file tree Collapse file tree 3 files changed +19
-6
lines changed
Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 66 "license" : " MIT" ,
77 "dependencies" : {
88 "@types/eslint-scope" : " ^3.7.0" ,
9- "@types/estree" : " ^0.0.46 " ,
9+ "@types/estree" : " ^0.0.47 " ,
1010 "@webassemblyjs/ast" : " 1.11.0" ,
1111 "@webassemblyjs/wasm-edit" : " 1.11.0" ,
1212 "@webassemblyjs/wasm-parser" : " 1.11.0" ,
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import {
1212 AssignmentPattern ,
1313 AssignmentProperty ,
1414 AwaitExpression ,
15+ BigIntLiteral ,
1516 BinaryExpression ,
1617 BlockStatement ,
1718 BreakStatement ,
@@ -3528,6 +3529,7 @@ type Expression =
35283529 | YieldExpression
35293530 | SimpleLiteral
35303531 | RegExpLiteral
3532+ | BigIntLiteral
35313533 | UpdateExpression
35323534 | BinaryExpression
35333535 | AssignmentExpression
@@ -4287,7 +4289,13 @@ type IgnorePluginOptions =
42874289 */
42884290 checkResource ?: ( resource : string , context : string ) => boolean ;
42894291 } ;
4290- type ImportSource = undefined | null | string | SimpleLiteral | RegExpLiteral ;
4292+ type ImportSource =
4293+ | undefined
4294+ | null
4295+ | string
4296+ | SimpleLiteral
4297+ | RegExpLiteral
4298+ | BigIntLiteral ;
42914299
42924300/**
42934301 * Options for infrastructure level logging.
@@ -4500,6 +4508,7 @@ declare class JavascriptParser extends Parser {
45004508 | YieldExpression
45014509 | SimpleLiteral
45024510 | RegExpLiteral
4511+ | BigIntLiteral
45034512 | UpdateExpression
45044513 | BinaryExpression
45054514 | AssignmentExpression
@@ -4707,6 +4716,7 @@ declare class JavascriptParser extends Parser {
47074716 | YieldExpression
47084717 | SimpleLiteral
47094718 | RegExpLiteral
4719+ | BigIntLiteral
47104720 | UpdateExpression
47114721 | BinaryExpression
47124722 | AssignmentExpression
@@ -4915,6 +4925,7 @@ declare class JavascriptParser extends Parser {
49154925 | YieldExpression
49164926 | SimpleLiteral
49174927 | RegExpLiteral
4928+ | BigIntLiteral
49184929 | UpdateExpression
49194930 | BinaryExpression
49204931 | AssignmentExpression
@@ -4965,6 +4976,7 @@ declare class JavascriptParser extends Parser {
49654976 | YieldExpression
49664977 | SimpleLiteral
49674978 | RegExpLiteral
4979+ | BigIntLiteral
49684980 | UpdateExpression
49694981 | BinaryExpression
49704982 | AssignmentExpression
@@ -6658,6 +6670,7 @@ type NodeEstreeIndex =
66586670 | YieldExpression
66596671 | SimpleLiteral
66606672 | RegExpLiteral
6673+ | BigIntLiteral
66616674 | UpdateExpression
66626675 | BinaryExpression
66636676 | AssignmentExpression
Original file line number Diff line number Diff line change 864864 " @types/estree" " *"
865865 " @types/json-schema" " *"
866866
867- " @types/estree@*" , "@types/estree@^0.0.46 ":
868- version "0.0.46 "
869- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.46 .tgz#0fb6bfbbeabd7a30880504993369c4bf1deab1fe "
870- integrity sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg ==
867+ " @types/estree@*" , "@types/estree@^0.0.47 ":
868+ version "0.0.47 "
869+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.47 .tgz#d7a51db20f0650efec24cd04994f523d93172ed4 "
870+ integrity sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg ==
871871
872872" @types/graceful-fs@^4.1.2 " :
873873 version "4.1.3"
You can’t perform that action at this time.
0 commit comments