Files
vtj/nx.json
2023-11-16 09:50:22 +08:00

31 lines
699 B
JSON

{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"parallel": 8,
"cacheableOperations": ["build", "test", "coverage"]
}
}
},
"targetDefaults": {
"test": {
"dependsOn": ["^test"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/dist", "{projectRoot}/types"]
},
"coverage": {
"dependsOn": ["^coverage"],
"outputs": ["{projectRoot}/coverage"]
}
},
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [],
"production": ["default"]
}
}