-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathnx.json
More file actions
32 lines (32 loc) 路 671 Bytes
/
Copy pathnx.json
File metadata and controls
32 lines (32 loc) 路 671 Bytes
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
{
"targetDefaults": {
"build": {
"dependsOn": ["^package"],
"outputs": ["{projectRoot}/build", "{projectRoot}/dist"],
"cache": true
},
"package": {
"dependsOn": ["^package"],
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"test": {
"dependsOn": ["^package"],
"cache": true
},
"test-linter": {
"dependsOn": ["^package"],
"cache": true
},
"test-type": {
"dependsOn": ["^package"],
"cache": true
},
"test-unit": {
"dependsOn": ["^package"],
"cache": true
}
},
"extends": "@nx/workspace/presets/npm.json",
"defaultBase": "main"
}