50 lines
1.1 KiB
JSON
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
|
|
}
|
|
}
|
|
}
|
|
}
|