mirror of https://github.com/webpack/webpack.git
fix lint
This commit is contained in:
parent
9061a5ca94
commit
e58c64912b
|
|
@ -4351,6 +4351,16 @@ declare class NodeEnvironmentPlugin {
|
||||||
* Options object for node compatibility features.
|
* Options object for node compatibility features.
|
||||||
*/
|
*/
|
||||||
declare interface NodeOptions {
|
declare interface NodeOptions {
|
||||||
|
/**
|
||||||
|
* Include a polyfill for the '__dirname' variable.
|
||||||
|
*/
|
||||||
|
__dirname?: boolean | "mock";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Include a polyfill for the '__filename' variable.
|
||||||
|
*/
|
||||||
|
__filename?: boolean | "mock";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Include a polyfill for the 'global' variable.
|
* Include a polyfill for the 'global' variable.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue