mirror of
https://github.com/angular/angular-cli.git
synced 2025-04-20 03:08:38 +08:00
To minimize the need for ts-node, the ng-dev configuration files are now ESM JavaScript files. To support type-checking of the files, JSDoc `@type` comments are added to each file. This allows for IDE support while also removing the need for ts-node to execute the files. Unfortunately, the `lib/packages.ts` file is still present and used by the configurations. This prevents full removal of ts-node for the ng-dev execution at this time.
19 lines
439 B
JavaScript
19 lines
439 B
JavaScript
/**
|
|
* The configuration for `ng-dev caretaker` commands.
|
|
*
|
|
* @type { import("@angular/ng-dev").CaretakerConfig }
|
|
*/
|
|
export const caretaker = {
|
|
githubQueries: [
|
|
{
|
|
name: 'Merge Queue',
|
|
query: `is:pr is:open status:success label:"action: merge"`,
|
|
},
|
|
{
|
|
name: 'Merge Assistance Queue',
|
|
query: `is:pr is:open label:"action: merge-assistance"`,
|
|
},
|
|
],
|
|
caretakerGroup: 'angular-cli-caretaker',
|
|
};
|