@nx/angular 22.7.0-beta.7 → 22.7.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/executors.json +62 -62
- package/generators.json +185 -185
- package/migrations.json +2412 -2412
- package/ng-package.json +19 -19
- package/package.json +10 -10
- package/project.json +2 -8
- package/src/builders/dev-server/schema.json +163 -163
- package/src/builders/webpack-browser/schema.json +567 -567
- package/src/builders/webpack-server/schema.json +303 -303
- package/src/executors/application/schema.json +732 -732
- package/src/executors/browser-esbuild/schema.json +548 -548
- package/src/executors/delegate-build/schema.json +31 -31
- package/src/executors/extract-i18n/schema.json +47 -47
- package/src/executors/module-federation-dev-server/schema.json +164 -164
- package/src/executors/module-federation-ssr-dev-server/schema.json +119 -119
- package/src/executors/ng-packagr-lite/schema.json +35 -35
- package/src/executors/package/schema.json +35 -35
- package/src/executors/unit-test/schema.json +305 -305
- package/src/generators/add-linting/schema.json +48 -48
- package/src/generators/application/schema.json +188 -188
- package/src/generators/component/schema.json +123 -123
- package/src/generators/component-story/schema.json +50 -50
- package/src/generators/component-test/schema.json +52 -52
- package/src/generators/convert-to-application-executor/schema.json +23 -23
- package/src/generators/convert-to-rspack/schema.json +27 -27
- package/src/generators/convert-to-with-mf/schema.json +30 -30
- package/src/generators/cypress-component-configuration/schema.json +43 -43
- package/src/generators/directive/schema.json +89 -89
- package/src/generators/federate-module/schema.json +80 -80
- package/src/generators/host/schema.json +189 -189
- package/src/generators/init/schema.json +31 -31
- package/src/generators/library/schema.json +189 -189
- package/src/generators/library-secondary-entry-point/schema.json +40 -40
- package/src/generators/move/schema.json +53 -53
- package/src/generators/ng-add/schema.json +62 -63
- package/src/generators/ngrx/schema.json +99 -99
- package/src/generators/ngrx-feature-store/schema.json +69 -69
- package/src/generators/ngrx-root-store/schema.json +68 -68
- package/src/generators/pipe/schema.json +75 -75
- package/src/generators/remote/schema.json +182 -182
- package/src/generators/scam/schema.json +120 -120
- package/src/generators/scam-directive/schema.json +82 -82
- package/src/generators/scam-pipe/schema.json +64 -64
- package/src/generators/scam-to-standalone/schema.json +29 -29
- package/src/generators/setup-mf/schema.json +90 -90
- package/src/generators/setup-ssr/schema.json +70 -70
- package/src/generators/setup-tailwind/schema.json +39 -39
- package/src/generators/stories/schema.json +53 -53
- package/src/generators/storybook-configuration/schema.json +80 -80
- package/src/generators/web-worker/schema.json +45 -45
|
@@ -1,78 +1,78 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
|
+
"$id": "SchematicsAngularPipe",
|
|
4
|
+
"title": "Angular Pipe Options Schema",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"cli": "nx",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"description": "Creates an Angular pipe.",
|
|
9
|
+
"examples": [
|
|
10
|
+
{
|
|
11
|
+
"description": "Generate a pipe with the exported symbol matching the file name. It results in the pipe `FooPipe` at `mylib/src/lib/foo.pipe.ts`",
|
|
12
|
+
"command": "nx g @nx/angular:pipe mylib/src/lib/foo.pipe.ts"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"description": "Generate a pipe without providing the file extension. It results in the pipe `FooPipe` at `mylib/src/lib/foo-pipe.ts`",
|
|
16
|
+
"command": "nx g @nx/angular:pipe mylib/src/lib/foo"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"description": "Generate a pipe with a different type separator. It results in the pipe `FooPipe` at `mylib/src/lib/foo.pipe.ts`",
|
|
20
|
+
"command": "nx g @nx/angular:pipe mylib/src/lib/foo --typeSeparator=."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"description": "Generate a pipe with the exported symbol different from the file name. It results in the pipe `CustomPipe` at `mylib/src/lib/foo-pipe.ts`",
|
|
24
|
+
"command": "nx g @nx/angular:pipe mylib/src/lib/foo --name=custom"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"properties": {
|
|
28
|
+
"path": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "The file path to the pipe. Relative to the current working directory.",
|
|
31
|
+
"$default": {
|
|
32
|
+
"$source": "argv",
|
|
33
|
+
"index": 0
|
|
34
|
+
},
|
|
35
|
+
"x-prompt": "What is the pipe file path?"
|
|
36
|
+
},
|
|
37
|
+
"name": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "The pipe symbol name. Defaults to the last segment of the file path."
|
|
40
|
+
},
|
|
41
|
+
"skipTests": {
|
|
42
|
+
"type": "boolean",
|
|
43
|
+
"description": "Do not create \"spec.ts\" test files for the new pipe.",
|
|
44
|
+
"default": false
|
|
45
|
+
},
|
|
46
|
+
"skipImport": {
|
|
47
|
+
"type": "boolean",
|
|
48
|
+
"default": false,
|
|
49
|
+
"description": "Do not import this pipe into the owning NgModule."
|
|
50
|
+
},
|
|
51
|
+
"standalone": {
|
|
52
|
+
"description": "Whether the generated pipe is standalone.",
|
|
53
|
+
"type": "boolean",
|
|
54
|
+
"default": true
|
|
55
|
+
},
|
|
56
|
+
"module": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"description": "The filename of the declaring NgModule.",
|
|
59
|
+
"alias": "m"
|
|
60
|
+
},
|
|
61
|
+
"export": {
|
|
62
|
+
"type": "boolean",
|
|
63
|
+
"default": false,
|
|
64
|
+
"description": "The declaring NgModule exports this pipe."
|
|
65
|
+
},
|
|
66
|
+
"typeSeparator": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"enum": ["-", "."],
|
|
69
|
+
"description": "The separator character to use before the type within the generated file's name. For example, if you set the option to `.`, the file will be named `example.pipe.ts`. It defaults to '-' for Angular v20+. For versions below v20, it defaults to '.'."
|
|
70
|
+
},
|
|
71
|
+
"skipFormat": {
|
|
72
|
+
"type": "boolean",
|
|
73
|
+
"default": false,
|
|
74
|
+
"description": "Skip formatting of files."
|
|
75
|
+
}
|
|
13
76
|
},
|
|
14
|
-
|
|
15
|
-
"description": "Generate a pipe without providing the file extension. It results in the pipe `FooPipe` at `mylib/src/lib/foo-pipe.ts`",
|
|
16
|
-
"command": "nx g @nx/angular:pipe mylib/src/lib/foo"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"description": "Generate a pipe with a different type separator. It results in the pipe `FooPipe` at `mylib/src/lib/foo.pipe.ts`",
|
|
20
|
-
"command": "nx g @nx/angular:pipe mylib/src/lib/foo --typeSeparator=."
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"description": "Generate a pipe with the exported symbol different from the file name. It results in the pipe `CustomPipe` at `mylib/src/lib/foo-pipe.ts`",
|
|
24
|
-
"command": "nx g @nx/angular:pipe mylib/src/lib/foo --name=custom"
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
"properties": {
|
|
28
|
-
"path": {
|
|
29
|
-
"type": "string",
|
|
30
|
-
"description": "The file path to the pipe. Relative to the current working directory.",
|
|
31
|
-
"$default": {
|
|
32
|
-
"$source": "argv",
|
|
33
|
-
"index": 0
|
|
34
|
-
},
|
|
35
|
-
"x-prompt": "What is the pipe file path?"
|
|
36
|
-
},
|
|
37
|
-
"name": {
|
|
38
|
-
"type": "string",
|
|
39
|
-
"description": "The pipe symbol name. Defaults to the last segment of the file path."
|
|
40
|
-
},
|
|
41
|
-
"skipTests": {
|
|
42
|
-
"type": "boolean",
|
|
43
|
-
"description": "Do not create \"spec.ts\" test files for the new pipe.",
|
|
44
|
-
"default": false
|
|
45
|
-
},
|
|
46
|
-
"skipImport": {
|
|
47
|
-
"type": "boolean",
|
|
48
|
-
"default": false,
|
|
49
|
-
"description": "Do not import this pipe into the owning NgModule."
|
|
50
|
-
},
|
|
51
|
-
"standalone": {
|
|
52
|
-
"description": "Whether the generated pipe is standalone.",
|
|
53
|
-
"type": "boolean",
|
|
54
|
-
"default": true
|
|
55
|
-
},
|
|
56
|
-
"module": {
|
|
57
|
-
"type": "string",
|
|
58
|
-
"description": "The filename of the declaring NgModule.",
|
|
59
|
-
"alias": "m"
|
|
60
|
-
},
|
|
61
|
-
"export": {
|
|
62
|
-
"type": "boolean",
|
|
63
|
-
"default": false,
|
|
64
|
-
"description": "The declaring NgModule exports this pipe."
|
|
65
|
-
},
|
|
66
|
-
"typeSeparator": {
|
|
67
|
-
"type": "string",
|
|
68
|
-
"enum": ["-", "."],
|
|
69
|
-
"description": "The separator character to use before the type within the generated file's name. For example, if you set the option to `.`, the file will be named `example.pipe.ts`. It defaults to '-' for Angular v20+. For versions below v20, it defaults to '.'."
|
|
70
|
-
},
|
|
71
|
-
"skipFormat": {
|
|
72
|
-
"type": "boolean",
|
|
73
|
-
"default": false,
|
|
74
|
-
"description": "Skip formatting of files."
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
"required": ["path"]
|
|
77
|
+
"required": ["path"]
|
|
78
78
|
}
|
|
@@ -1,184 +1,184 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
|
+
"$id": "NxMFRemote",
|
|
4
|
+
"cli": "nx",
|
|
5
|
+
"title": "Nx Module Federation Producer (Remote) App",
|
|
6
|
+
"description": "Create an Angular Producer (Remote) Module Federation Application.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"examples": [
|
|
9
|
+
{
|
|
10
|
+
"command": "nx g @nx/angular:remote appName --host=host --port=4201",
|
|
11
|
+
"description": "Create an Angular app with configuration in place for Module Federation. If Consumer (host) is provided, attach this Producer (remote) app to Consumer (host) app's configuration."
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"command": "nx g @nx/angular:producer appName --consumer=host --port=4201",
|
|
15
|
+
"description": "Create an Angular app with configuration in place for Module Federation. If Consumer (host) is provided, attach this Producer (remote) app to Consumer (host) app's configuration."
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"properties": {
|
|
19
|
+
"directory": {
|
|
20
|
+
"description": "The directory of the new application.",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"$default": {
|
|
23
|
+
"$source": "argv",
|
|
24
|
+
"index": 0
|
|
25
|
+
},
|
|
26
|
+
"x-prompt": "Which directory do you want to create the application in?"
|
|
27
|
+
},
|
|
28
|
+
"name": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "The name to give to the Producer (remote) Angular app.",
|
|
31
|
+
"pattern": "^[a-zA-Z_$][a-zA-Z_$0-9]*$",
|
|
32
|
+
"x-priority": "important"
|
|
33
|
+
},
|
|
34
|
+
"host": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"description": "The name of the Consumer (host) app to attach this Producer (remote) app to.",
|
|
37
|
+
"x-dropdown": "projects",
|
|
38
|
+
"x-priority": "important",
|
|
39
|
+
"alias": "consumer"
|
|
40
|
+
},
|
|
41
|
+
"port": {
|
|
42
|
+
"type": "number",
|
|
43
|
+
"description": "The port on which this app should be served."
|
|
44
|
+
},
|
|
45
|
+
"bundler": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "The bundler to use for the remote application.",
|
|
48
|
+
"default": "webpack",
|
|
49
|
+
"enum": ["webpack", "rspack"]
|
|
50
|
+
},
|
|
51
|
+
"style": {
|
|
52
|
+
"description": "The file extension to be used for style files.",
|
|
53
|
+
"type": "string",
|
|
54
|
+
"default": "css",
|
|
55
|
+
"enum": ["css", "scss", "sass", "less"],
|
|
56
|
+
"x-prompt": {
|
|
57
|
+
"message": "Which stylesheet format would you like to use?",
|
|
58
|
+
"type": "list",
|
|
59
|
+
"items": [
|
|
60
|
+
{
|
|
61
|
+
"value": "css",
|
|
62
|
+
"label": "CSS"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"value": "scss",
|
|
66
|
+
"label": "SASS(.scss) [ https://sass-lang.com ]"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"value": "sass",
|
|
70
|
+
"label": "SASS(.sass) [ https://sass-lang.com ]"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"value": "less",
|
|
74
|
+
"label": "LESS [ https://lesscss.org ]"
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"inlineStyle": {
|
|
80
|
+
"description": "Specifies if the style will be in the ts file.",
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"default": false,
|
|
83
|
+
"alias": "s"
|
|
84
|
+
},
|
|
85
|
+
"inlineTemplate": {
|
|
86
|
+
"description": "Specifies if the template will be in the ts file.",
|
|
87
|
+
"type": "boolean",
|
|
88
|
+
"default": false,
|
|
89
|
+
"alias": "t"
|
|
90
|
+
},
|
|
91
|
+
"viewEncapsulation": {
|
|
92
|
+
"description": "Specifies the view encapsulation strategy.",
|
|
93
|
+
"enum": ["Emulated", "None", "ShadowDom"],
|
|
94
|
+
"type": "string"
|
|
95
|
+
},
|
|
96
|
+
"prefix": {
|
|
97
|
+
"type": "string",
|
|
98
|
+
"format": "html-selector",
|
|
99
|
+
"description": "The prefix to apply to generated selectors.",
|
|
100
|
+
"alias": "p"
|
|
101
|
+
},
|
|
102
|
+
"skipTests": {
|
|
103
|
+
"description": "Skip creating spec files.",
|
|
104
|
+
"type": "boolean",
|
|
105
|
+
"default": false,
|
|
106
|
+
"alias": "S"
|
|
107
|
+
},
|
|
108
|
+
"skipPackageJson": {
|
|
109
|
+
"type": "boolean",
|
|
110
|
+
"default": false,
|
|
111
|
+
"description": "Do not add dependencies to `package.json`.",
|
|
112
|
+
"x-priority": "internal"
|
|
113
|
+
},
|
|
114
|
+
"unitTestRunner": {
|
|
115
|
+
"type": "string",
|
|
116
|
+
"enum": ["vitest-analog", "jest", "none"],
|
|
117
|
+
"description": "Test runner to use for unit tests. `vitest-analog` uses AnalogJS-based setup with `@nx/vitest`. It defaults to `vitest-analog` for Angular versions >= 21.0.0, otherwise `jest`.",
|
|
118
|
+
"x-prompt": "Which unit test runner would you like to use?"
|
|
119
|
+
},
|
|
120
|
+
"e2eTestRunner": {
|
|
121
|
+
"type": "string",
|
|
122
|
+
"enum": ["playwright", "cypress", "none"],
|
|
123
|
+
"description": "Test runner to use for end to end (E2E) tests.",
|
|
124
|
+
"x-prompt": "Which E2E test runner would you like to use?",
|
|
125
|
+
"default": "playwright"
|
|
126
|
+
},
|
|
127
|
+
"tags": {
|
|
128
|
+
"type": "string",
|
|
129
|
+
"description": "Add tags to the application (used for linting)."
|
|
130
|
+
},
|
|
131
|
+
"linter": {
|
|
132
|
+
"description": "The tool to use for running lint checks.",
|
|
133
|
+
"type": "string",
|
|
134
|
+
"enum": ["eslint", "none"],
|
|
135
|
+
"default": "eslint"
|
|
136
|
+
},
|
|
137
|
+
"backendProject": {
|
|
138
|
+
"type": "string",
|
|
139
|
+
"description": "Backend project that provides data to this application. This sets up `proxy.config.json`."
|
|
140
|
+
},
|
|
141
|
+
"strict": {
|
|
142
|
+
"type": "boolean",
|
|
143
|
+
"description": "Create an application with stricter type checking and build optimization options.",
|
|
144
|
+
"default": true
|
|
145
|
+
},
|
|
146
|
+
"setParserOptionsProject": {
|
|
147
|
+
"type": "boolean",
|
|
148
|
+
"description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.",
|
|
149
|
+
"default": false
|
|
150
|
+
},
|
|
151
|
+
"addTailwind": {
|
|
152
|
+
"type": "boolean",
|
|
153
|
+
"description": "Whether to configure Tailwind CSS for the application.",
|
|
154
|
+
"default": false
|
|
155
|
+
},
|
|
156
|
+
"skipFormat": {
|
|
157
|
+
"description": "Skip formatting files.",
|
|
158
|
+
"type": "boolean",
|
|
159
|
+
"default": false,
|
|
160
|
+
"x-priority": "internal"
|
|
161
|
+
},
|
|
162
|
+
"standalone": {
|
|
163
|
+
"description": "Whether to generate a Producer (remote) application with standalone components.",
|
|
164
|
+
"type": "boolean",
|
|
165
|
+
"default": true
|
|
166
|
+
},
|
|
167
|
+
"ssr": {
|
|
168
|
+
"description": "Whether to configure SSR for the Producer (remote) application to be consumed by a Consumer (host) application using SSR.",
|
|
169
|
+
"type": "boolean",
|
|
170
|
+
"default": false
|
|
171
|
+
},
|
|
172
|
+
"zoneless": {
|
|
173
|
+
"description": "Generate an application that does not use `zone.js`. It defaults to `true`. _Note: this is only supported in Angular versions >= 21.0.0_",
|
|
174
|
+
"type": "boolean"
|
|
175
|
+
},
|
|
176
|
+
"typescriptConfiguration": {
|
|
177
|
+
"type": "boolean",
|
|
178
|
+
"description": "Whether the module federation configuration and webpack configuration files should use TS.",
|
|
179
|
+
"default": true
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"additionalProperties": false,
|
|
183
|
+
"required": ["directory"]
|
|
184
184
|
}
|