Directive generator
Directive generator
This is the documentation for Angular 6.
You can switch to the latest version Angular 7.
You can switch to the latest version Angular 7.
ng generate directive [name] [--[argument]=[value]]
ng generate d
Create an Angular directive.
Options
project
#
The name of the project.
Type | string |
Default | projectName |
prefix
#
The prefix to apply to generated selectors.
Type | string |
Aliases | p |
spec
#
Specifies if a spec file is generated.
Type | boolean |
Default | true |
skipImport
#
Flag to skip the module import.
Type | boolean |
Default | false |
selector
#
The selector to use for the directive.
Type | string |
flat
#
Flag to indicate if a dir is created.
Type | boolean |
Default | true |
module
#
Allows specification of the declaring module.
Type | string |
Aliases | m |
export
#
Specifies if declaring module exports the directive.
Type | boolean |
Default | false |
lintFix
#
Specifies whether to apply lint fixes after generating the directive.
Type | boolean |
Default | false |