Lines Matching refs:resolveModulePaths
88 function setCompilerOptions(resolveModulePaths: string[]) {
93 if (process.env.compileTool === 'rollup' && resolveModulePaths && resolveModulePaths.length) {
94 resolveModulePaths.forEach((item: string) => {
194 export function createLanguageService(rootFileNames: string[], resolveModulePaths: string[]): ts.La…
195 setCompilerOptions(resolveModulePaths);
271 export function serviceChecker(rootFileNames: string[], newLogger: any = null, resolveModulePaths: …
280 languageService = createLanguageService(rootFileNames, resolveModulePaths);
292 languageService = createLanguageService(filterFiles, resolveModulePaths);
642 …isPipe: boolean = false, resolveModulePaths: string[] = null): ts.WatchCompilerHostOfFilesAndCompi…
648 setCompilerOptions(resolveModulePaths);
689 export function watchChecker(rootFileNames: string[], newLogger: any = null, resolveModulePaths: st…
692 …eWatchCompilerHost(rootFileNames, printDiagnostic, () => {}, () => {}, false, resolveModulePaths));
1015 const resolveModulePaths: string[] = []; constant
1019 if (projectConfig.resolveModulePaths && Array.isArray(projectConfig.resolveModulePaths)) {
1020 resolveModulePaths.push(...projectConfig.resolveModulePaths);
1023 languageService = createLanguageService(filterFiles, resolveModulePaths);