-
Notifications
You must be signed in to change notification settings - Fork 23
/
nx.json
40 lines (40 loc) · 942 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
35
36
37
38
39
40
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"build",
"test",
"lint",
"type-check",
"generate"
]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"]
},
"preview": {
"//": "Serves the app artifact created in the build target",
"dependsOn": ["build"]
},
"lint": {
"//": "We use @typescript-eslint/parser for type-aware linting, so we must build dependencies prior to linting",
"dependsOn": ["^build"]
},
"test": {
"//": "Tests don't depend a build for their own package, but they do depend on their dependencies being built",
"dependsOn": ["^build"]
},
"start": {
"dependsOn": ["^build"]
},
"type-check": {
"dependsOn": ["^build"]
}
},
"defaultBase": "main"
}