You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
|
|
"sourceRoot": "apps/api/src",
|
|
|
|
"projectType": "application",
|
|
|
|
"prefix": "api",
|
|
|
|
"generators": {},
|
|
|
|
"targets": {
|
|
|
|
"build": {
|
|
|
|
"executor": "@nrwl/webpack:webpack",
|
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/apps/api",
|
|
|
|
"main": "apps/api/src/main.ts",
|
|
|
|
"tsConfig": "apps/api/tsconfig.app.json",
|
|
|
|
"assets": ["apps/api/src/assets"],
|
|
|
|
"target": "node",
|
|
|
|
"compiler": "tsc"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"generatePackageJson": true,
|
|
|
|
"optimization": true,
|
|
|
|
"extractLicenses": true,
|
|
|
|
"inspect": false,
|
|
|
|
"fileReplacements": [
|
|
|
|
{
|
|
|
|
"replace": "apps/api/src/environments/environment.ts",
|
|
|
|
"with": "apps/api/src/environments/environment.prod.ts"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"outputs": ["{options.outputPath}"]
|
|
|
|
},
|
|
|
|
"serve": {
|
|
|
|
"executor": "@nrwl/node:node",
|
|
|
|
"options": {
|
|
|
|
"buildTarget": "api:build"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"executor": "@nrwl/linter:eslint",
|
|
|
|
"options": {
|
|
|
|
"lintFilePatterns": ["apps/api/**/*.ts"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"executor": "@nrwl/jest:jest",
|
|
|
|
"options": {
|
|
|
|
"jestConfig": "apps/api/jest.config.ts",
|
|
|
|
"passWithNoTests": true
|
|
|
|
},
|
|
|
|
"outputs": ["{workspaceRoot}/coverage/apps/api"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"tags": []
|
|
|
|
}
|