Files
angular-challenges/apps/testing/18-nested-components/project.json
2025-01-27 21:07:25 +01:00

97 lines
2.8 KiB
JSON

{
"name": "testing-nested-components",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/testing/18-nested-components/src",
"prefix": "app",
"tags": [],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/testing/18-nested-components",
"index": "apps/testing/18-nested-components/src/index.html",
"main": "apps/testing/18-nested-components/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "apps/testing/18-nested-components/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"apps/testing/18-nested-components/src/favicon.ico",
"apps/testing/18-nested-components/src/assets"
],
"styles": ["apps/testing/18-nested-components/src/styles.scss"],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"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": {
"buildTarget": "testing-nested-components:build:production"
},
"development": {
"buildTarget": "testing-nested-components:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "testing-nested-components:build"
}
},
"test": {
"outputs": [
"{workspaceRoot}/coverage/{projectRoot}",
"{projectRoot}/coverage"
],
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"coverage": true
}
}
},
"component-test": {
"executor": "@nx/cypress:cypress",
"options": {
"cypressConfig": "apps/testing/18-nested-components/cypress.config.ts",
"testingType": "component",
"skipServe": true,
"devServerTarget": "testing-nested-components:build"
}
}
}
}