mirror of https://github.com/webpack/webpack.git
prettier
This commit is contained in:
parent
05223013d8
commit
1edacddaa4
|
@ -9,3 +9,6 @@ test/*.*
|
||||||
# Ignore example fixtures
|
# Ignore example fixtures
|
||||||
examples/*.*
|
examples/*.*
|
||||||
!examples/**/webpack.config.js
|
!examples/**/webpack.config.js
|
||||||
|
|
||||||
|
# Ignore generated files
|
||||||
|
*.check.js
|
||||||
|
|
|
@ -5795,11 +5795,13 @@ type LoaderContext<OptionsType> = NormalModuleLoaderContext<OptionsType> &
|
||||||
LoaderRunnerLoaderContext<OptionsType> &
|
LoaderRunnerLoaderContext<OptionsType> &
|
||||||
LoaderPluginLoaderContext &
|
LoaderPluginLoaderContext &
|
||||||
HotModuleReplacementPluginLoaderContext;
|
HotModuleReplacementPluginLoaderContext;
|
||||||
type LoaderDefinition<OptionsType = {}, ContextAdditions = {}> =
|
type LoaderDefinition<
|
||||||
LoaderDefinitionFunction<OptionsType, ContextAdditions> & {
|
OptionsType = {},
|
||||||
raw?: false;
|
ContextAdditions = {}
|
||||||
pitch?: PitchLoaderDefinitionFunction<OptionsType, ContextAdditions>;
|
> = LoaderDefinitionFunction<OptionsType, ContextAdditions> & {
|
||||||
};
|
raw?: false;
|
||||||
|
pitch?: PitchLoaderDefinitionFunction<OptionsType, ContextAdditions>;
|
||||||
|
};
|
||||||
declare interface LoaderDefinitionFunction<
|
declare interface LoaderDefinitionFunction<
|
||||||
OptionsType = {},
|
OptionsType = {},
|
||||||
ContextAdditions = {}
|
ContextAdditions = {}
|
||||||
|
@ -8662,11 +8664,13 @@ declare interface RawChunkGroupOptions {
|
||||||
preloadOrder?: number;
|
preloadOrder?: number;
|
||||||
prefetchOrder?: number;
|
prefetchOrder?: number;
|
||||||
}
|
}
|
||||||
type RawLoaderDefinition<OptionsType = {}, ContextAdditions = {}> =
|
type RawLoaderDefinition<
|
||||||
RawLoaderDefinitionFunction<OptionsType, ContextAdditions> & {
|
OptionsType = {},
|
||||||
raw: true;
|
ContextAdditions = {}
|
||||||
pitch?: PitchLoaderDefinitionFunction<OptionsType, ContextAdditions>;
|
> = RawLoaderDefinitionFunction<OptionsType, ContextAdditions> & {
|
||||||
};
|
raw: true;
|
||||||
|
pitch?: PitchLoaderDefinitionFunction<OptionsType, ContextAdditions>;
|
||||||
|
};
|
||||||
declare interface RawLoaderDefinitionFunction<
|
declare interface RawLoaderDefinitionFunction<
|
||||||
OptionsType = {},
|
OptionsType = {},
|
||||||
ContextAdditions = {}
|
ContextAdditions = {}
|
||||||
|
|
Loading…
Reference in New Issue