nest-admin-main/nx.json

23 lines
445 B
JSON
Raw Permalink Normal View History

2024-09-11 16:49:47 +08:00
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"parallel": 5,
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["default"],
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"test": {
"dependsOn": ["build"],
"inputs": ["default"],
"cache": true
},
"e2e": {
"dependsOn": ["build"],
"inputs": ["default"],
"cache": true
}
}
}