218 lines
6.0 KiB
JSON
218 lines
6.0 KiB
JSON
{
|
|
"version": 1,
|
|
"projects": {
|
|
"chat-room": {
|
|
"projectType": "application",
|
|
"schematics": {
|
|
"@schematics/angular:component": {
|
|
"style": "scss"
|
|
}
|
|
},
|
|
"root": "apps/chat-room",
|
|
"sourceRoot": "apps/chat-room/src",
|
|
"prefix": "chat-room",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
"options": {
|
|
"outputPath": "dist/apps/chat-room",
|
|
"index": "apps/chat-room/src/index.html",
|
|
"main": "apps/chat-room/src/main.ts",
|
|
"polyfills": "apps/chat-room/src/polyfills.ts",
|
|
"tsConfig": "apps/chat-room/tsconfig.app.json",
|
|
"aot": true,
|
|
"assets": [
|
|
"apps/chat-room/src/favicon.ico",
|
|
"apps/chat-room/src/assets"
|
|
],
|
|
"styles": ["apps/chat-room/src/styles.scss"],
|
|
"scripts": []
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "apps/chat-room/src/environments/environment.ts",
|
|
"with": "apps/chat-room/src/environments/environment.prod.ts"
|
|
}
|
|
],
|
|
"optimization": true,
|
|
"outputHashing": "all",
|
|
"sourceMap": false,
|
|
"extractCss": true,
|
|
"namedChunks": false,
|
|
"extractLicenses": true,
|
|
"vendorChunk": false,
|
|
"buildOptimizer": true,
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "2mb",
|
|
"maximumError": "5mb"
|
|
},
|
|
{
|
|
"type": "anyComponentStyle",
|
|
"maximumWarning": "6kb",
|
|
"maximumError": "10kb"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"serve": {
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
"options": {
|
|
"browserTarget": "chat-room:build",
|
|
"proxyConfig": "apps/chat-room/proxy.conf.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "chat-room:build:production"
|
|
}
|
|
}
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
"options": {
|
|
"browserTarget": "chat-room:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/chat-room/src/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"options": {
|
|
"jestConfig": "apps/chat-room/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"chat-room-e2e": {
|
|
"root": "apps/chat-room-e2e",
|
|
"sourceRoot": "apps/chat-room-e2e/src",
|
|
"projectType": "application",
|
|
"architect": {
|
|
"e2e": {
|
|
"builder": "@nrwl/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/chat-room-e2e/cypress.json",
|
|
"tsConfig": "apps/chat-room-e2e/tsconfig.e2e.json",
|
|
"devServerTarget": "chat-room:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "chat-room:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/chat-room-e2e/**/*.{js,ts}"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"api": {
|
|
"root": "apps/api",
|
|
"sourceRoot": "apps/api/src",
|
|
"projectType": "application",
|
|
"prefix": "api",
|
|
"schematics": {},
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@nrwl/node:build",
|
|
"options": {
|
|
"outputPath": "dist/apps/api",
|
|
"main": "apps/api/src/main.ts",
|
|
"tsConfig": "apps/api/tsconfig.app.json",
|
|
"assets": ["apps/api/src/assets"]
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"optimization": true,
|
|
"extractLicenses": true,
|
|
"inspect": false,
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "apps/api/src/environments/environment.ts",
|
|
"with": "apps/api/src/environments/environment.prod.ts"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"serve": {
|
|
"builder": "@nrwl/node:execute",
|
|
"options": {
|
|
"buildTarget": "api:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["apps/api/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"options": {
|
|
"jestConfig": "apps/api/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"api-interfaces": {
|
|
"root": "libs/api-interfaces",
|
|
"sourceRoot": "libs/api-interfaces/src",
|
|
"projectType": "library",
|
|
"schematics": {},
|
|
"architect": {
|
|
"lint": {
|
|
"builder": "@nrwl/linter:eslint",
|
|
"options": {
|
|
"lintFilePatterns": ["libs/api-interfaces/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@nrwl/jest:jest",
|
|
"options": {
|
|
"jestConfig": "libs/api-interfaces/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"cli": {
|
|
"defaultCollection": "@nrwl/angular"
|
|
},
|
|
"schematics": {
|
|
"@nrwl/angular": {
|
|
"application": {
|
|
"linter": "eslint"
|
|
},
|
|
"library": {
|
|
"linter": "eslint"
|
|
},
|
|
"storybook-configuration": {
|
|
"linter": "eslint"
|
|
}
|
|
},
|
|
"@nrwl/angular:application": {
|
|
"unitTestRunner": "jest",
|
|
"e2eTestRunner": "cypress"
|
|
},
|
|
"@nrwl/angular:library": {
|
|
"unitTestRunner": "jest"
|
|
}
|
|
},
|
|
"defaultProject": "chat-room"
|
|
}
|