Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
20
node_modules/next/dist/build/webpack/plugins/eval-source-map-dev-tool-plugin.d.ts
generated
vendored
Normal file
20
node_modules/next/dist/build/webpack/plugins/eval-source-map-dev-tool-plugin.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { type webpack, type SourceMapDevToolPluginOptions } from 'next/dist/compiled/webpack/webpack';
|
||||
export interface EvalSourceMapDevToolPluginOptions extends SourceMapDevToolPluginOptions {
|
||||
shouldIgnorePath?: (modulePath: string) => boolean;
|
||||
}
|
||||
export default class EvalSourceMapDevToolPlugin {
|
||||
sourceMapComment: string;
|
||||
moduleFilenameTemplate: NonNullable<EvalSourceMapDevToolPluginOptions['moduleFilenameTemplate']>;
|
||||
namespace: NonNullable<EvalSourceMapDevToolPluginOptions['namespace']>;
|
||||
options: EvalSourceMapDevToolPluginOptions;
|
||||
shouldIgnorePath: (modulePath: string) => boolean;
|
||||
/**
|
||||
* @param {SourceMapDevToolPluginOptions|string} inputOptions Options object
|
||||
*/
|
||||
constructor(inputOptions: EvalSourceMapDevToolPluginOptions);
|
||||
/**
|
||||
* Apply the plugin
|
||||
* @param compiler the compiler instance
|
||||
*/
|
||||
apply(compiler: webpack.Compiler): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue