Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ParserPluginWithOptions

type ParserPluginWithOptions =
| ["decorators", DecoratorsPluginOptions]
| ["estree", {
classFeatures?: boolean;
}
]
| ["importAttributes", {
deprecatedAssertSyntax: boolean;
}
]
| ["moduleAttributes", {
version: "may-2020";
}
]
| ["optionalChainingAssign", {
version: "2023-07";
}
]
| ["pipelineOperator", PipelineOperatorPluginOptions]
| ["recordAndTuple", RecordAndTuplePluginOptions]
| ["flow", FlowPluginOptions]
| ["typescript", TypeScriptPluginOptions];

§Type

§
["decorators", DecoratorsPluginOptions] | ["estree", {
classFeatures?: boolean;
}
]
| ["importAttributes", {
deprecatedAssertSyntax: boolean;
}
]
| ["moduleAttributes", {
version: "may-2020";
}
]
| ["optionalChainingAssign", {
version: "2023-07";
}
]
| ["pipelineOperator", PipelineOperatorPluginOptions] | ["recordAndTuple", RecordAndTuplePluginOptions] | ["flow", FlowPluginOptions] | ["typescript", TypeScriptPluginOptions]
[src]