-
-
Notifications
You must be signed in to change notification settings - Fork 403
/
nx.json
58 lines (58 loc) · 1.29 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
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"cache": true
},
"prepare": {
"dependsOn": ["^prepare"],
"cache": true
},
"package": {
"dependsOn": ["^package"],
"cache": true
},
"test": {
"cache": true
},
"lint": {
"cache": true
},
"tsc": {
"cache": true
},
"e2e": {
"cache": true
},
"build-storybook": {
"cache": true
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": ["{workspaceRoot}/vite.config.ts"],
"production": ["default"]
},
"nxCloudAccessToken": "YTAwYWM5ZDgtOGM3OC00YTQwLThlZjUtNjQwZWE5NzUxZjk4fHJlYWQ=",
"plugins": [
{
"plugin": "@nx/storybook/plugin",
"options": {
"buildStorybookTargetName": "build-storybook",
"serveStorybookTargetName": "storybook",
"testStorybookTargetName": "test-storybook",
"staticStorybookTargetName": "static-storybook"
}
},
{
"plugin": "@nx/cypress/plugin",
"options": {
"targetName": "e2e",
"openTargetName": "e2e-open",
"componentTestingTargetName": "component-test",
"ciTargetName": "e2e-ci"
}
}
]
}