This repository has been archived on 2025-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
insiemesalute-3p-nx20-tspaths/project.json
2025-02-05 15:48:50 +01:00

51 lines
1.1 KiB
JSON

{
"name": "insiemesalute-3p",
"$schema": "node_modules/nx/schemas/project-schema.json",
"includedScripts": [],
"sourceRoot": "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": "insiemesalute-3p:build",
"runBuildTargetDependencies": false
},
"configurations": {
"development": {
"buildTarget": "insiemesalute-3p:build:development"
},
"production": {
"buildTarget": "insiemesalute-3p:build:production"
}
}
},
"test": {
"options": {
"passWithNoTests": true
}
}
}
}