Lines Matching refs:resolve
127 fs.readdirSync(path.resolve(__dirname, '../declarations'))
130 declarationsFileNames.push(path.resolve(__dirname, '../declarations', fileName));
147 path.resolve(__dirname, '../tsconfig.json'), ts.sys.readFile).config.compilerOptions;
150 const basePath: string = path.resolve(projectConfig.projectPath);
167 const buildInfoPath: string = path.resolve(projectConfig.cachePath, '..', suffix);
241 const absPath: string = path.resolve(buildInfoDirectory, fileNames[index]);
465 cacheFile = path.resolve(projectConfig.cachePath, '../.ts_checker_cache');
588 const declarationsPath: string = path.resolve(__dirname, '../declarations').replace(/\\/g, '/');
667 if (diagnostic.file && cache[path.resolve(diagnostic.file.fileName)]) {
668 cache[path.resolve(diagnostic.file.fileName)].error = true;
676 checkNeedUpdateFiles(path.resolve(file), needUpdate, alreadyCheckedFiles);
678 storedFileInfo.changeFiles.push(path.resolve(file));
759 if (![...shouldResolvedFiles].length || shouldResolvedFiles.has(path.resolve(containingFile))
760 || !(resolvedModulesCache[path.resolve(containingFile)] &&
761 resolvedModulesCache[path.resolve(containingFile)].length === moduleNames.length)) {
794 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName);
801 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName);
808 const modulePath: string = path.resolve(__dirname, '../../../api', moduleName + '.d.ts');
809 …const systemDETSModulePath: string = path.resolve(__dirname, '../../../api', moduleName + '.d.ets'…
810 … const kitModulePath: string = path.resolve(__dirname, '../../../kits', moduleName + '.d.ts');
811 …const kitSystemDETSModulePath: string = path.resolve(__dirname, '../../../kits', moduleName + '.d.…
813 … const jsModulePath: string = path.resolve(__dirname, '../node_modules', moduleName + suffix);
815 path.resolve(__dirname, '../node_modules', moduleName + '/index.js');
816 const DETSModulePath: string = path.resolve(path.dirname(containingFile),
836 DETSModulePathFromModule = path.resolve(
850 …hotReloadSupportFiles.add(path.resolve(resolvedModules[resolvedModules.length - 1].resolvedFileNam…
857 createOrUpdateCache(resolvedModules, path.resolve(containingFile));
859 resolvedModulesCache[path.resolve(containingFile)] = resolvedModules;
864 return resolvedModulesCache[path.resolve(containingFile)];
876 const moduleDir = path.resolve(dir, moduleName + ext);
897 …(path.resolve(resolvedModules[resolvedModules.length - 1].resolvedFileName).match(/(\.[^d]|[^\.]d|…
898 … path.resolve(resolvedModules[resolvedModules.length - 1].resolvedFileName).match(/\.d\.e?ts$/) &&
899 path.resolve(resolvedModules[resolvedModules.length - 1].resolvedFileName).match(
908 const file: string = path.resolve(moduleObj.resolvedFileName);
916 value.parent.push(path.resolve(containingFile));
923 cache[path.resolve(containingFile)] = {
925 parent: cache[path.resolve(containingFile)] && cache[path.resolve(containingFile)].parent ?
926 cache[path.resolve(containingFile)].parent : [], error
1014 path.resolve(fileName) !== path.resolve(projectConfig.projectPath, 'app.ets')) {
1282 const sdkPath = path.resolve(projectConfig.etsLoaderPath, '../../../');
1283 return path.resolve(fileName).startsWith(sdkPath);
1363 rootFileNames.push(path.resolve(fileName));