(moduleName string, containingFile string, host ResolutionHost)
| 2075 | } |
| 2076 | |
| 2077 | func ResolveConfig(moduleName string, containingFile string, host ResolutionHost) *ResolvedModule { |
| 2078 | resolver := NewResolver(host, &core.CompilerOptions{ModuleResolution: core.ModuleResolutionKindNodeNext}, "", "") |
| 2079 | return resolver.resolveConfig(moduleName, containingFile) |
| 2080 | } |
| 2081 | |
| 2082 | func GetAutomaticTypeDirectiveNames(options *core.CompilerOptions, host ResolutionHost) []string { |
| 2083 | if !options.UsesWildcardTypes() { |
no test coverage detected