-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
nx.json
58 lines (58 loc) · 1.24 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
{
"workspaceLayout": {
"libsDir": "packages"
},
"tasksRunnerOptions": {
"default": {
"options": {
"strictlyOrderedTargets": ["build", "package", "prepare"],
"canTrackAnalytics": false,
"showUsageWarnings": true
}
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": ["{workspaceRoot}/workspace.json", "{workspaceRoot}/nx.json"],
"production": ["default", "!{projectRoot}/.eslintrc.js"]
},
"targetDefaults": {
"build": {
"inputs": ["production", "^production"],
"dependsOn": ["^build"],
"cache": true
},
"test": {
"cache": true
},
"lint": {
"cache": true
},
"package": {
"cache": true
},
"prepare": {
"cache": true
},
"e2e": {
"cache": true
},
"e2e-run": {
"cache": true
},
"docker-up": {
"cache": true
},
"docker-ready": {
"cache": true
},
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
}
},
"nxCloudAccessToken": "OTZlM2FmYjYtMGQ2NS00OWMzLWJkOTQtYTBmYzE0N2Y0OTIyfHJlYWQtd3JpdGU=",
"useInferencePlugins": false,
"defaultBase": "main"
}