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.
kempt-kinkajou-2023/weather_platform/apps/agregators-service/project.json

65 lines
1.8 KiB

{
"name": "agregators-service",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/agregators-service/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nx/webpack:webpack",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
"target": "node",
"compiler": "tsc",
"outputPath": "dist/apps/agregators-service",
"main": "apps/agregators-service/src/main.ts",
"tsConfig": "apps/agregators-service/tsconfig.app.json",
"assets": ["apps/agregators-service/src/assets"],
"isolatedConfig": true,
"webpackConfig": "apps/agregators-service/webpack.config.js"
},
"configurations": {
"development": {},
"production": {}
}
},
"serve": {
"executor": "@nx/js:node",
"defaultConfiguration": "development",
"options": {
"buildTarget": "agregators-service:build"
},
"configurations": {
"development": {
"buildTarget": "agregators-service:build:development"
},
"production": {
"buildTarget": "agregators-service:build:production"
}
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/agregators-service/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "apps/agregators-service/jest.config.ts",
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
}
},
"tags": []
}