From 0fdc9b61111bf3e76c69c659800ee642077cfba7 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Mon, 18 Dec 2017 08:26:56 +0100 Subject: [PATCH] Add `module.builtinModules` --- lib/core.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/core.js b/lib/core.js index 91628bfcd79..a69157b2e71 100644 --- a/lib/core.js +++ b/lib/core.js @@ -800,6 +800,7 @@ declare var module: { loaded: boolean; parent: any; children: Array; + builtinModules: Array; }; declare var require: { (id: string): any;