export interface ProjectConfig { projectId: string } /** * Preserves a project's configuration while providing type checking to config * files. * * @param config - Project configuration to expose to the CLI. */ export function defineConfig(config: ProjectConfig) { return config }