From e58c64912b3ea0dd185c945feaef86aaef14337d Mon Sep 17 00:00:00 2001 From: Ivan Kopeykin Date: Tue, 16 Jun 2020 22:09:07 +0300 Subject: [PATCH] fix lint --- types.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/types.d.ts b/types.d.ts index 5efae9986..3971d45ef 100644 --- a/types.d.ts +++ b/types.d.ts @@ -4351,6 +4351,16 @@ declare class NodeEnvironmentPlugin { * Options object for node compatibility features. */ 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. */