From c737e20972d21682130bf782cbc8bfa716b20b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Tue, 4 Apr 2023 15:28:27 +0200 Subject: [PATCH] `make prepublish-prepare-dts` --- packages/babel-parser/typings/babel-parser.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/babel-parser/typings/babel-parser.d.ts b/packages/babel-parser/typings/babel-parser.d.ts index d80fff653c30..f83e7a57a9cc 100644 --- a/packages/babel-parser/typings/babel-parser.d.ts +++ b/packages/babel-parser/typings/babel-parser.d.ts @@ -26,7 +26,8 @@ type Plugin = | "importMeta" | "jsx" | "logicalAssignment" - | "importAssertions" + | "importAssertions" // deprecated + | "importAttributes" | "importReflection" | "moduleBlocks" | "moduleStringNames" @@ -47,6 +48,7 @@ type Plugin = type ParserPluginWithOptions = | ["decorators", DecoratorsPluginOptions] | ["estree", { classFeatures?: boolean }] + | ["importAttributes", { deprecatedAssertSyntax: boolean }] // @deprecated | ["moduleAttributes", { version: "may-2020" }] | ["pipelineOperator", PipelineOperatorPluginOptions]