forked from Sage-Bionetworks/synapse-web-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nx.json
34 lines (34 loc) · 870 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
{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "test", "lint", "type-check"]
}
}
},
"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"
}