-
Notifications
You must be signed in to change notification settings - Fork 53
/
nx.json
34 lines (34 loc) · 894 Bytes
/
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
{
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.js"],
"cache": true
},
"test": {
"inputs": ["default", "^production"],
"cache": true
},
"e2e": {
"cache": true
}
},
"extends": "@nx/workspace/presets/core.json",
"tasksRunnerOptions": {
"default": {
"options": {
"runtimeCacheInputs": ["echo $SERVICE_PROVIDER_URI", "echo $SERVICE_PROVIDER_SERVER"]
}
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": ["{workspaceRoot}/babel.config.js"],
"production": ["default", "!{projectRoot}/.eslintrc.js"]
},
"nxCloudAccessToken": "MmY2Mjc3ZWYtOTlhZC00Mjg4LWE4MjQtYjU0MGJkYzdlNjk1fHJlYWQtd3JpdGU=",
"defaultBase": "main"
}