mirror of https://github.com/webpack/webpack.git
Compare commits
2 Commits
886ce7106e
...
7e88bdccc1
| Author | SHA1 | Date |
|---|---|---|
|
|
7e88bdccc1 | |
|
|
9f98d803c0 |
|
|
@ -3349,7 +3349,6 @@ export interface JavascriptParserOptions {
|
||||||
* Set the inner regular expression for partial dynamic dependencies.
|
* Set the inner regular expression for partial dynamic dependencies.
|
||||||
*/
|
*/
|
||||||
wrappedContextRegExp?: RegExp;
|
wrappedContextRegExp?: RegExp;
|
||||||
[k: string]: any;
|
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Generator options for json modules.
|
* Generator options for json modules.
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1786,7 +1786,7 @@
|
||||||
"JavascriptParserOptions": {
|
"JavascriptParserOptions": {
|
||||||
"description": "Parser options for javascript modules.",
|
"description": "Parser options for javascript modules.",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": true,
|
"additionalProperties": false,
|
||||||
"properties": {
|
"properties": {
|
||||||
"amd": {
|
"amd": {
|
||||||
"$ref": "#/definitions/Amd"
|
"$ref": "#/definitions/Amd"
|
||||||
|
|
|
||||||
|
|
@ -8195,8 +8195,6 @@ declare class JavascriptParser extends ParserClass {
|
||||||
* Parser options for javascript modules.
|
* Parser options for javascript modules.
|
||||||
*/
|
*/
|
||||||
declare interface JavascriptParserOptions {
|
declare interface JavascriptParserOptions {
|
||||||
[index: string]: any;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the value of `require.amd` and `define.amd`. Or disable AMD support.
|
* Set the value of `require.amd` and `define.amd`. Or disable AMD support.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue