mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-15 01:54:04 +08:00
This commit removes the need for the bootstrap-local logic and moves the scripts to` mts`
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
/**
|
|
* Configuration for the `ng-dev format` command.
|
|
*
|
|
* @type { import("@angular/ng-dev").FormatConfig }
|
|
*/
|
|
export const format = {
|
|
'prettier': {
|
|
matchers: ['**/*.{mts,cts,ts,mjs,cjs,js,json,yml,yaml,md}'],
|
|
},
|
|
'buildifier': true,
|
|
};
|