-
Notifications
You must be signed in to change notification settings - Fork 139
/
nx.json
33 lines (33 loc) · 858 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
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": ["{projectRoot}/src/**/*"],
"build": [
"default",
"!{projectRoot}/**/*.{md,mdx}",
"{projectRoot}/tsconfig.json",
"{projectRoot}/package.json",
"{projectRoot}/rslib.config.*",
"{projectRoot}/modern.config.*",
"{projectRoot}/scripts/**/*"
],
"prebundle": [
"{projectRoot}/package.json",
"{projectRoot}/prebundle.config.mjs"
]
},
"targetDefaults": {
"build": {
"cache": true,
"dependsOn": ["^build", "prebundle"],
"inputs": ["build", "^build"],
"outputs": ["{projectRoot}/dist", "{projectRoot}/dist-types"]
},
"prebundle": {
"cache": true,
"inputs": ["prebundle"],
"outputs": ["{projectRoot}/compiled"]
}
},
"defaultBase": "main"
}