Lines Matching refs:modulePath
488 const containingFile: string = path.join(projectConfig.modulePath, "build-profile.json5");
530 let modulePath: string = path.resolve(sdkConfig.apiPath, moduleName + '.d.ts');
532 if (!fs.existsSync(modulePath)) {
533 modulePath = path.resolve(sdkConfig.apiPath, moduleName + '.d.ets');
536 …temModules.includes(moduleName + (isDETS ? '.d.ets' : '.d.ts')) && ts.sys.fileExists(modulePath)) {
537 resolvedModules.push(getResolveModule(modulePath, isDETS ? '.d.ets' : '.d.ts'));
546 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName); constant
547 if (ts.sys.fileExists(modulePath)) {
548 resolvedModules.push(getResolveModule(modulePath, '.ets'));
553 const modulePath: string = path.resolve(path.dirname(containingFile), moduleName); constant
554 if (ts.sys.fileExists(modulePath)) {
555 resolvedModules.push(getResolveModule(modulePath, '.ts'));
560 const modulePath: string = path.resolve(__dirname, '../../../api', moduleName + '.d.ts'); constant
568 if (ts.sys.fileExists(modulePath)) {
569 resolvedModules.push(getResolveModule(modulePath, '.d.ts'));
712 function getResolveModule(modulePath: string, type): ts.ResolvedModuleFull {
714 resolvedFileName: modulePath,