Files
angular-challenges/apps/projection/project.json
2022-11-03 15:14:07 +01:00

96 lines
2.7 KiB
JSON

{
"name": "projection",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/projection/src",
"prefix": "angular-challenges",
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/projection",
"index": "apps/projection/src/index.html",
"main": "apps/projection/src/main.ts",
"polyfills": "apps/projection/src/polyfills.ts",
"tsConfig": "apps/projection/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"apps/projection/src/favicon.ico",
"apps/projection/src/assets"
],
"styles": ["apps/projection/src/styles.scss"],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "apps/projection/src/environments/environment.ts",
"with": "apps/projection/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"executor": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "projection:build:production"
},
"development": {
"browserTarget": "projection:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "projection:build"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"apps/projection/**/*.ts",
"apps/projection/**/*.html"
]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "apps/projection/jest.config.ts",
"passWithNoTests": true
}
}
},
"tags": []
}