12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
import {GithubConfig} from '../dev-infra/utils/config';
|
|
|
|
/**
|
|
* Github configuration for the `ng-dev` command. This repository is used as
|
|
* remote for the merge script and other utilities like `ng-dev pr rebase`.
|
|
*/
|
|
|
|
export const github: GithubConfig = {
|
|
owner: 'angular',
|
|
name: 'angular'
|
|
};
|