Lines Matching refs:rootFileNames
196 export function createLanguageService(rootFileNames: string[], resolveModulePaths: string[]): ts.La…
198 rootFileNames.forEach((fileName: string) => {
202 getScriptFileNames: () => [...rootFileNames, ...readDeaclareFiles()],
273 export function serviceChecker(rootFileNames: string[], newLogger: any = null, resolveModulePaths: …
278 rootFileNames.forEach(fileName => {
282 languageService = createLanguageService(rootFileNames, resolveModulePaths);
293 const filterFiles: string[] = filterInput(rootFileNames);
300 processBuildHap(cacheFile, rootFileNames);
304 function processBuildHap(cacheFile: string, rootFileNames: string[]): void {
321 [...allResolvedModules, ...rootFileNames].forEach(moduleFile => {
423 function filterInput(rootFileNames: string[]): string[] {
424 return rootFileNames.filter((file: string) => {
645 export function createWatchCompilerHost(rootFileNames: string[],
649 rootFileNames.forEach(fileName => {
656 [...rootFileNames, ...readDeaclareFiles()], compilerOptions,
694 export function watchChecker(rootFileNames: string[], newLogger: any = null, resolveModulePaths: st…
697 …createWatchCompilerHost(rootFileNames, printDiagnostic, () => {}, () => {}, false, resolveModulePa…
1025 const rootFileNames: string[] = []; constant
1028 rootFileNames.push(path.resolve(fileName));
1033 const filterFiles: string[] = filterInput(rootFileNames);