|
| 1 | +{ |
| 2 | + "name": "di", |
| 3 | + "$schema": "../../node_modules/nx/schemas/project-schema.json", |
| 4 | + "sourceRoot": "apps/di/src", |
| 5 | + "projectType": "application", |
| 6 | + "targets": { |
| 7 | + "build": { |
| 8 | + "executor": "@nrwl/webpack:webpack", |
| 9 | + "outputs": ["{options.outputPath}"], |
| 10 | + "options": { |
| 11 | + "target": "node", |
| 12 | + "outputPath": "dist/apps/di", |
| 13 | + "main": "apps/di/src/main.ts", |
| 14 | + "tsConfig": "apps/di/tsconfig.app.json", |
| 15 | + "externalDependencies": "none", |
| 16 | + "optimization": true, |
| 17 | + "extractLicenses": true, |
| 18 | + "inspect": false, |
| 19 | + "buildLibsFromSource": false |
| 20 | + }, |
| 21 | + "configurations": { |
| 22 | + "tsc": { |
| 23 | + "compiler": "tsc" |
| 24 | + }, |
| 25 | + "swc": { |
| 26 | + "compiler": "swc" |
| 27 | + } |
| 28 | + } |
| 29 | + }, |
| 30 | + "serve": { |
| 31 | + "executor": "@nrwl/js:node", |
| 32 | + "options": { |
| 33 | + "buildTarget": "di:build" |
| 34 | + }, |
| 35 | + "configurations": { |
| 36 | + "production": { |
| 37 | + "buildTarget": "di:build:production" |
| 38 | + } |
| 39 | + } |
| 40 | + }, |
| 41 | + "lint": { |
| 42 | + "executor": "@nrwl/linter:eslint", |
| 43 | + "outputs": ["{options.outputFile}"], |
| 44 | + "options": { |
| 45 | + "lintFilePatterns": ["apps/di/**/*.ts"] |
| 46 | + } |
| 47 | + }, |
| 48 | + "test": { |
| 49 | + "executor": "@nrwl/jest:jest", |
| 50 | + "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], |
| 51 | + "options": { |
| 52 | + "jestConfig": "apps/di/jest.config.ts", |
| 53 | + "passWithNoTests": true |
| 54 | + } |
| 55 | + } |
| 56 | + }, |
| 57 | + "tags": [] |
| 58 | +} |
0 commit comments