You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: declarations/WebpackOptions.d.ts
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -733,6 +733,10 @@ export type WarningFilterItemTypes =
733
733
* Environment to build for. An array of environments to build for all of them when possible.
734
734
*/
735
735
exporttypeTarget=string[]|false|string;
736
+
/**
737
+
* Enable validation of webpack configuration. Defaults to true in development mode. In production mode, defaults to true unless futureDefaults is enabled, then defaults to false.
738
+
*/
739
+
exporttypeValidate=boolean;
736
740
/**
737
741
* Enter watch mode, which rebuilds on file change.
* Environment to build for. An array of environments to build for all of them when possible.
1031
1035
*/
1032
1036
target?: Target;
1037
+
/**
1038
+
* Enable validation of webpack configuration. Defaults to true in development mode. In production mode, defaults to true unless futureDefaults is enabled, then defaults to false.
1039
+
*/
1040
+
validate?: Validate;
1033
1041
/**
1034
1042
* Enter watch mode, which rebuilds on file change.
* Environment to build for. An array of environments to build for all of them when possible.
3958
3966
*/
3959
3967
target?: Target;
3968
+
/**
3969
+
* Enable validation of webpack configuration. Defaults to true in development mode. In production mode, defaults to true unless futureDefaults is enabled, then defaults to false.
3970
+
*/
3971
+
validate?: Validate;
3960
3972
/**
3961
3973
* Enter watch mode, which rebuilds on file change.
0 commit comments