diff --git a/src/client/base.ts b/src/client/base.ts index d1ca2db..e2bf41c 100644 --- a/src/client/base.ts +++ b/src/client/base.ts @@ -434,14 +434,13 @@ export class BaseClient { const locationsFullPaths: RC['locations'] = { base: locations.base, - output: locations.output, }; for (const i in locations) { const key = i as keyof typeof locations; const location = locations[key]; if (key in locationsFullPaths) continue; - if (typeof location === 'string') locationsFullPaths[key] = join(process.cwd(), locations.output, location); + if (typeof location === 'string') locationsFullPaths[key] = join(process.cwd(), locations.base, location); else locationsFullPaths[key] = location as any; } @@ -521,10 +520,8 @@ export interface StartOptions { interface RCLocations extends ExtendedRCLocations { base: string; - output: string; commands?: string; langs?: string; - templates?: string; events?: string; components?: string; }