Lines Matching refs:resolveModulePaths
91 function setCompilerOptions(resolveModulePaths: string[]) {
96 if (process.env.compileTool === 'rollup' && resolveModulePaths && resolveModulePaths.length) {
97 resolveModulePaths.forEach((item: string) => {
196 export function createLanguageService(rootFileNames: string[], resolveModulePaths: string[]): ts.La…
197 setCompilerOptions(resolveModulePaths);
273 export function serviceChecker(rootFileNames: string[], newLogger: any = null, resolveModulePaths: …
282 languageService = createLanguageService(rootFileNames, resolveModulePaths);
294 languageService = createLanguageService(filterFiles, resolveModulePaths);
647 …isPipe: boolean = false, resolveModulePaths: string[] = null): ts.WatchCompilerHostOfFilesAndCompi…
653 setCompilerOptions(resolveModulePaths);
694 export function watchChecker(rootFileNames: string[], newLogger: any = null, resolveModulePaths: st…
697 …eWatchCompilerHost(rootFileNames, printDiagnostic, () => {}, () => {}, false, resolveModulePaths));
1026 const resolveModulePaths: string[] = []; constant
1030 if (projectConfig.resolveModulePaths && Array.isArray(projectConfig.resolveModulePaths)) {
1031 resolveModulePaths.push(...projectConfig.resolveModulePaths);
1034 languageService = createLanguageService(filterFiles, resolveModulePaths);