Angular schematics that creates Angular inline modules
npm install @ngneat/aim``bash`
npm i @ngneat/aim --save-dev
`bash`
ng g @ngneat/aim:component name

`bash`
ng g @ngneat/aim:directive name

`bash`
ng g @ngneat/aim:pipe name

- You can use every option from the default Angular schematics. For example:
`bash`
ng g @ngneat/aim:component --name=bar --inlineStyle --inlineTemplate
- You can define default values for the schematics in your angular.json file:
`json``
"schematics": {
"@ngneat/aim:component": {
"changeDetection": "OnPush"
}
}