File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,6 @@ export interface ResolveModuleNameResult {
9
9
10
10
export interface MultiCompilerHost {
11
11
getSourceFile ( fileName : string , moduleResolution ?: ResolutionOption ) : ts . SourceFile | undefined ;
12
- getImpliedNodeFormatForFile (
13
- fileName : string ,
14
- moduleResolution : ResolutionOption
15
- ) : ts . ModuleKind . ESNext | ts . ModuleKind . CommonJS | undefined ;
16
- getPackageScopeForPath ( fileName : string ) : ts . PackageJsonInfo | undefined ;
17
12
getModuleKindForFile ( fileName : string , moduleResolution : "node16" ) : ModuleKind ;
18
13
getModuleKindForFile ( fileName : string , moduleResolution : ResolutionOption ) : ModuleKind | undefined ;
19
14
resolveModuleName (
@@ -90,8 +85,6 @@ export function createMultiCompilerHost(fs: Package): MultiCompilerHost {
90
85
91
86
return {
92
87
getSourceFile,
93
- getImpliedNodeFormatForFile,
94
- getPackageScopeForPath,
95
88
getModuleKindForFile,
96
89
resolveModuleName,
97
90
createProgram,
You can’t perform that action at this time.
0 commit comments