-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnx.json
185 lines (185 loc) · 5 KB
/
nx.json
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
184
185
{
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals", "workspaceRootIgnores"],
"workspaceRootIgnores": [
"!{projectRoot}/LICENSE",
"!{workspaceRoot}/*.md",
"!{workspaceRoot}/.whitesource",
"!{workspaceRoot}/commitlint.config.js",
"!{workspaceRoot}/renovate.json",
"!{workspaceRoot}/.github/pull_request_template.md",
"!{workspaceRoot}/.husky/*",
"!{workspaceRoot}/.changeset/*.md",
"!{workspaceRoot}/contributing_docs/*.md",
"!{workspaceRoot}/.verdaccio/*"
],
"sharedGlobals": [],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test|mock).[jt]s?(x)?(.snap)",
"!{projectRoot}/**/mock-data/**",
"!{projectRoot}/**/?(*.)+(test-d).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/typedoc.json",
"!{projectRoot}/src/test-setup.[jt]s",
"!{projectRoot}/test-setup.[jt]s",
"noEslintConfig",
"noMarkdown",
"workspaceRootIgnores"
],
"noMarkdown": ["!{projectRoot}/*.md", "!{projectRoot}/**/*.md"],
"noTests": [
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/**/?(*.)+(test-d).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/src/test-setup.[jt]s",
"!{projectRoot}/test-setup.[jt]s",
"!{projectRoot}/eslint.config.mjs"
],
"noEslintConfig": ["!{projectRoot}/eslint.config.mjs"]
},
"targetDefaults": {
"nx-release-publish": {
"options": {
"packageRoot": "packages/{projectName}"
}
},
"typecheck": {
"inputs": ["default", "^default"]
},
"serve": {
"dependsOn": ["^build"]
},
"e2e": {
"dependsOn": ["^e2e"],
"inputs": ["default", "^default"],
"outputs": ["{projectRoot}/.playwright"],
"cache": true
},
"lint": {
"inputs": [
"default",
"^default",
"noMarkdown",
"^noMarkdown",
"{workspaceRoot}/eslint.config.mjs"
],
"dependsOn": ["^lint"],
"cache": true
},
"test": {
"inputs": ["default", "^default", "noMarkdown", "^noMarkdown"],
"dependsOn": ["^test"],
"outputs": ["{projectRoot}/coverage"],
"cache": true
},
"build": {
"inputs": ["production", "^production"],
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"e2e-ci--**/*": {
"dependsOn": ["^build"],
"inputs": ["default", "^default", "noMarkdown", "^noMarkdown"],
"outputs": ["{projectRoot}/.playwright"],
"cache": true
},
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"preview": {
"inputs": ["default", "^default", "noMarkdown", "^noMarkdown"],
"dependsOn": ["^build"]
},
"serve:dev": {
"inputs": ["default", "^default", "noMarkdown", "^noMarkdown"],
"dependsOn": ["^build"]
},
"test:watch": {
"inputs": ["default", "^default", "noMarkdown", "^noMarkdown"],
"dependsOn": ["^test:watch"]
},
"test:coverage": {
"inputs": ["default", "^default", "noMarkdown", "^noMarkdown"],
"dependsOn": ["^test:coverage"],
"outputs": ["{projectRoot}/./coverage"],
"cache": true
}
},
"sync": {
"applyChanges": true
},
"plugins": [
{
"plugin": "@nx/js/typescript",
"options": {
"typecheck": {
"targetName": "typecheck"
},
"build": {
"targetName": "build",
"configName": "tsconfig.lib.json"
}
},
"include": ["e2e/**/**/*", "packages/**/**/*"]
},
{
"plugin": "@nx/playwright/plugin",
"options": {
"ciTargetName": "e2e-ci",
"targetName": "e2e"
},
"include": ["e2e/**/**/*"]
},
{
"plugin": "@nx/eslint/plugin",
"options": {
"targetName": "nxLint"
},
"include": ["e2e/**/**/*", "packages/**/**/*"]
},
{
"plugin": "@nx/vite/plugin",
"options": {
"buildTargetName": "nxBuild",
"serveTargetName": "nxServe",
"previewTargetName": "nxPreview",
"testTargetName": "nxTest",
"serveStaticTargetName": "serve-static",
"typecheckTargetName": "typecheck"
},
"include": ["packages/**/**/*", "e2e/**/**/*"]
}
],
"parallel": 1,
"workspaceLayout": {
"appsDir": "",
"libsDir": ""
},
"generators": {
"@nx/js:library": {
"publishable": true,
"outDir": "{projectRoot}/dist",
"bundler": "tsc",
"linter": "eslint",
"unitTestRunner": "vitest"
}
},
"release": {
"projects": ["packages/*"],
"version": {
"generatorOptions": {
"versionPrefix": ""
},
"preVersionCommand": "pnpm nx run-many -t build"
}
},
"useDaemonProcess": true,
"useInferencePlugins": true,
"defaultBase": "main",
"nxCloudId": "679a63312b5df202c4527cb3",
"$schema": "./node_modules/nx/schemas/nx-schema.json"
}