Lines Matching refs:modulePath
483 const containingFile: string = path.join(projectConfig.modulePath, "build-profile.json5");
525 let modulePath: string = path.resolve(sdkConfig.apiPath, moduleName + '.d.ts');
527 if (!fs.existsSync(modulePath)) {
528 modulePath = path.resolve(sdkConfig.apiPath, moduleName + '.d.ets');
531 …temModules.includes(moduleName + (isDETS ? '.d.ets' : '.d.ts')) && ts.sys.fileExists(modulePath)) {
532 resolvedModules.push(getResolveModule(modulePath, isDETS ? '.d.ets' : '.d.ts'));
541 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName); constant
542 if (ts.sys.fileExists(modulePath)) {
543 resolvedModules.push(getResolveModule(modulePath, '.ets'));
548 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName); constant
549 if (ts.sys.fileExists(modulePath)) {
550 resolvedModules.push(getResolveModule(modulePath, '.ts'));
555 const modulePath: string = path.resolve(__dirname, '../../../api', moduleName + '.d.ts'); constant
563 if (ts.sys.fileExists(modulePath)) {
564 resolvedModules.push(getResolveModule(modulePath, '.d.ts'));
707 function getResolveModule(modulePath: string, type): ts.ResolvedModuleFull {
709 resolvedFileName: modulePath,