-
-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
80 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import type Module = require('module'); | ||
import type { Service } from '.'; | ||
|
||
/** @internal */ | ||
export type ModuleConstructorWithInternals = typeof Module & { | ||
_resolveFilename( | ||
request: string, | ||
parent?: Module, | ||
isMain?: boolean, | ||
options?: ModuleResolveFilenameOptions, | ||
...rest: any[] | ||
): string; | ||
_preloadModules(requests?: string[]): void; | ||
}; | ||
|
||
interface ModuleResolveFilenameOptions { | ||
paths?: Array<string>; | ||
} | ||
|
||
/** | ||
* @internal | ||
*/ | ||
export function installCommonjsResolveHookIfNecessary(tsNodeService: Service) { | ||
const Module = require('module') as ModuleConstructorWithInternals; | ||
const originalResolveFilename = Module._resolveFilename; | ||
const shouldInstallHook = tsNodeService.options.experimentalResolverFeatures; | ||
if (shouldInstallHook) { | ||
Module._resolveFilename = _resolveFilename; | ||
} | ||
function _resolveFilename( | ||
this: any, | ||
request: string, | ||
parent?: Module, | ||
isMain?: boolean, | ||
options?: ModuleResolveFilenameOptions, | ||
...rest: any[] | ||
): string { | ||
if (!tsNodeService.enabled()) | ||
return originalResolveFilename.call( | ||
this, | ||
request, | ||
parent, | ||
isMain, | ||
options, | ||
...rest | ||
); | ||
|
||
// This is a stub to support other pull requests that will be merged in the near future | ||
// Right now, it does nothing. | ||
return originalResolveFilename.call( | ||
this, | ||
request, | ||
parent, | ||
isMain, | ||
options, | ||
...rest | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters