mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-11 23:46:34 +08:00
31 lines
699 B
JSON
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"]
|
|
}
|
|
}
|