-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnx.json
52 lines (52 loc) · 1.18 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
{
"affected": {
"defaultBase": "master"
},
"cli": {
"defaultCollection": "@nrwl/angular"
},
"defaultProject": "webaudio-spectrum-analyser",
"generators": {
"@nrwl/angular:application": {
"e2eTestRunner": "cypress",
"unitTestRunner": "jest"
},
"@nrwl/angular:library": {
"unitTestRunner": "jest"
},
"@nrwl/schematics:application": {
"framework": "angular",
"style": "scss"
},
"@nrwl/schematics:library": {
"style": "scss"
}
},
"implicitDependencies": {
"angular.json": "*",
"nx.json": "*",
"package.json": "*",
"tsconfig.base.json": "*",
"tslint.json": "*"
},
"npmScope": "webaudio-spectrum-analyser",
"targetDependencies": {
"build": [
{
"projects": "dependencies",
"target": "build"
}
]
},
"tasksRunnerOptions": {
"default": {
"options": {
"cacheDirectory": "/tmp/nx/webaudio-spectrum-analyser",
"cacheableOperations": ["build", "lint", "test", "e2e"],
"parallel": 1,
"runtimeCacheInputs": ["node -v", "echo $IMPORTANT_ENV_VAR"]
},
"runner": "@nrwl/workspace/tasks-runners/default"
}
}
}