Created
January 7, 2023 18:08
-
-
Save taylorhutchison/088aed7cad85c6a47f808764f63c10f1 to your computer and use it in GitHub Desktop.
Angular CLI schematic changes for components, directives, and services.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
"schematics": { | |
"@schematics/angular": { | |
"component": { | |
"inlineTemplate": true, | |
"inlineStyle": true, | |
"skipTests": true, | |
"flat": true, | |
"changeDetection": "OnPush" | |
}, | |
"directive": { | |
"skipTests": true, | |
"flat": true | |
}, | |
"service": { | |
"flat": true | |
} | |
} | |
} | |
// ... angular.json continues | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment