Compare commits

..

1 Commits

Author SHA1 Message Date
Mondal 886ce7106e
Merge fad1bc1f32 into 8804459884 2025-10-04 13:00:01 +02:00
4 changed files with 5 additions and 2 deletions

View File

@ -3349,6 +3349,7 @@ export interface JavascriptParserOptions {
* Set the inner regular expression for partial dynamic dependencies.
*/
wrappedContextRegExp?: RegExp;
[k: string]: any;
}
/**
* Generator options for json modules.

File diff suppressed because one or more lines are too long

View File

@ -1786,7 +1786,7 @@
"JavascriptParserOptions": {
"description": "Parser options for javascript modules.",
"type": "object",
"additionalProperties": false,
"additionalProperties": true,
"properties": {
"amd": {
"$ref": "#/definitions/Amd"

2
types.d.ts vendored
View File

@ -8195,6 +8195,8 @@ declare class JavascriptParser extends ParserClass {
* Parser options for javascript modules.
*/
declare interface JavascriptParserOptions {
[index: string]: any;
/**
* Set the value of `require.amd` and `define.amd`. Or disable AMD support.
*/