This repository has been archived on 2025-03-21. You can view files and clone it, but cannot push or open issues or pull requests.
insiemesalute-3p-nx/apps/ebitemp-api/project.json
2025-02-07 10:13:03 +01:00

50 lines
1.1 KiB
JSON

{
"name": "ebitemp-api",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/ebitemp-api/src",
"projectType": "application",
"tags": [],
"targets": {
"build": {
"executor": "nx:run-commands",
"options": {
"command": "webpack-cli build",
"args": [
"node-env=production"
]
},
"configurations": {
"development": {
"args": [
"node-env=development"
]
}
}
},
"serve": {
"executor": "@nx/js:node",
"defaultConfiguration": "development",
"dependsOn": [
"build"
],
"options": {
"buildTarget": "ebitemp-api:build",
"runBuildTargetDependencies": false
},
"configurations": {
"development": {
"buildTarget": "ebitemp-api:build:development"
},
"production": {
"buildTarget": "ebitemp-api:build:production"
}
}
},
"test": {
"options": {
"passWithNoTests": true
}
}
}
}