-
Notifications
You must be signed in to change notification settings - Fork 393
/
nx.json
28 lines (28 loc) · 946 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
{
"extends": "nx/presets/npm.json",
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"cache": true
},
"dev": {
"dependsOn": ["^build"],
"cache": true
},
"test": {
"//": "Build @lwc/perf-benchmarks dependencies and build target when invoking the test:performance script on the root package.json.",
"dependsOn": ["build"]
},
"sauce": {
"//": "Build @lwc/integration dependencies when invoking the test:integration script on the root package.json.",
"dependsOn": ["^build"]
}
},
"namedInputs": {
"sharedGlobals": ["{workspaceRoot}/scripts/rollup/rollup.config.js"],
"default": ["{projectRoot}/**/*", "sharedGlobals"]
},
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"cacheDirectory": "./.nx-cache",
"defaultBase": "master"
}