Lines Matching refs:resolveModulePaths
145 function setCompilerOptions(resolveModulePaths: string[]): void {
148 if (process.env.compileTool === 'rollup' && resolveModulePaths && resolveModulePaths.length) {
149 resolveModulePaths.forEach((item: string) => {
321 export function createLanguageService(rootFileNames: string[], resolveModulePaths: string[],
323 setCompilerOptions(resolveModulePaths);
501 … serviceChecker(rootFileNames: string[], newLogger: Object = null, resolveModulePaths: string[] = …
513 languageService = createLanguageService(rootFileNames, resolveModulePaths, compilationTime);
526 …languageService = createLanguageService(rootFileNames, resolveModulePaths, compilationTime, rollup…
1213 …isPipe: boolean = false, resolveModulePaths: string[] = null): ts.WatchCompilerHostOfFilesAndCompi…
1220 setCompilerOptions(resolveModulePaths);
1265 export function watchChecker(rootFileNames: string[], newLogger: any = null, resolveModulePaths: st…
1268 …atchCompilerHost(rootFileNames, printDiagnostic, () => { }, () => { }, false, resolveModulePaths));
1757 const resolveModulePaths: string[] = []; constant
1761 if (projectConfig.resolveModulePaths && Array.isArray(projectConfig.resolveModulePaths)) {
1762 resolveModulePaths.push(...projectConfig.resolveModulePaths);
1765 languageService = createLanguageService(filterFiles, resolveModulePaths);