Lines Matching refs:rootFileNames
333 export function createLanguageService(rootFileNames: string[], resolveModulePaths: string[],
337 getScriptFileNames: () => [...rootFileNames, ...readDeaclareFiles()],
387 return getOrCreateLanguageService(servicesHost, rootFileNames, rollupShareObject);
390 function getOrCreateLanguageService(servicesHost: ts.LanguageServiceHost, rootFileNames: string[],
406 let updateRootFileNames = [...rootFileNames, ...readDeaclareFiles()];
452 export function serviceChecker(rootFileNames: string[], newLogger: Object = null, resolveModulePath…
458 rootFileNames.forEach(fileName => {
462 languageService = createLanguageService(rootFileNames, resolveModulePaths, compilationTime);
474 …languageService = createLanguageService(rootFileNames, resolveModulePaths, compilationTime, rollup…
488 processBuildHap(cacheFile, rootFileNames, compilationTime);
534 function processBuildHap(cacheFile: string, rootFileNames: string[], compilationTime: CompilationTi…
557 [...allResolvedModules, ...rootFileNames].forEach(moduleFile => {
672 function filterInput(rootFileNames: string[]): string[] {
673 return rootFileNames.filter((file: string) => {
930 export function createWatchCompilerHost(rootFileNames: string[],
934 rootFileNames.forEach(fileName => {
941 [...rootFileNames, ...readDeaclareFiles()], compilerOptions,
979 export function watchChecker(rootFileNames: string[], newLogger: any = null, resolveModulePaths: st…
982 …createWatchCompilerHost(rootFileNames, printDiagnostic, () => { }, () => { }, false, resolveModule…
1360 const rootFileNames: string[] = []; constant
1363 rootFileNames.push(path.resolve(fileName));
1368 const filterFiles: string[] = filterInput(rootFileNames);