|
| 1 | +{ |
| 2 | + "name": "typical-chat-app-with-react-query", |
| 3 | + "$schema": "../../node_modules/nx/schemas/project-schema.json", |
| 4 | + "sourceRoot": "apps/typical-chat-app-with-react-query", |
| 5 | + "projectType": "application", |
| 6 | + "targets": { |
| 7 | + "build": { |
| 8 | + "executor": "@nrwl/next:build", |
| 9 | + "outputs": ["{options.outputPath}"], |
| 10 | + "defaultConfiguration": "production", |
| 11 | + "options": { |
| 12 | + "root": "apps/typical-chat-app-with-react-query", |
| 13 | + "outputPath": "dist/apps/typical-chat-app-with-react-query" |
| 14 | + }, |
| 15 | + "configurations": { |
| 16 | + "development": { |
| 17 | + "outputPath": "apps/typical-chat-app-with-react-query" |
| 18 | + }, |
| 19 | + "production": {} |
| 20 | + } |
| 21 | + }, |
| 22 | + "serve": { |
| 23 | + "executor": "@nrwl/next:server", |
| 24 | + "defaultConfiguration": "development", |
| 25 | + "options": { |
| 26 | + "buildTarget": "typical-chat-app-with-react-query:build", |
| 27 | + "dev": true |
| 28 | + }, |
| 29 | + "configurations": { |
| 30 | + "development": { |
| 31 | + "buildTarget": "typical-chat-app-with-react-query:build:development", |
| 32 | + "dev": true |
| 33 | + }, |
| 34 | + "production": { |
| 35 | + "buildTarget": "typical-chat-app-with-react-query:build:production", |
| 36 | + "dev": false |
| 37 | + } |
| 38 | + } |
| 39 | + }, |
| 40 | + "export": { |
| 41 | + "executor": "@nrwl/next:export", |
| 42 | + "options": { |
| 43 | + "buildTarget": "typical-chat-app-with-react-query:build:production" |
| 44 | + } |
| 45 | + }, |
| 46 | + "test": { |
| 47 | + "executor": "@nrwl/jest:jest", |
| 48 | + "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], |
| 49 | + "options": { |
| 50 | + "jestConfig": "apps/typical-chat-app-with-react-query/jest.config.ts", |
| 51 | + "passWithNoTests": true |
| 52 | + } |
| 53 | + }, |
| 54 | + "type-check": { |
| 55 | + "executor": "@nrwl/workspace:run-commands", |
| 56 | + "options": { |
| 57 | + "command": "tsc --build apps/typical-chat-app-with-react-query/tsconfig.json --incremental" |
| 58 | + } |
| 59 | + }, |
| 60 | + "lint": { |
| 61 | + "executor": "@nrwl/linter:eslint", |
| 62 | + "outputs": ["{options.outputFile}"], |
| 63 | + "options": { |
| 64 | + "lintFilePatterns": [ |
| 65 | + "apps/typical-chat-app-with-react-query/**/*.{ts,tsx,js,jsx}" |
| 66 | + ] |
| 67 | + } |
| 68 | + } |
| 69 | + }, |
| 70 | + "tags": [] |
| 71 | +} |
0 commit comments