angular.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "FrontP-Educativa": {
  7. "projectType": "application",
  8. "schematics": {
  9. "@schematics/angular:component": {
  10. "standalone": false
  11. },
  12. "@schematics/angular:directive": {
  13. "standalone": false
  14. },
  15. "@schematics/angular:pipe": {
  16. "standalone": false
  17. }
  18. },
  19. "root": "",
  20. "sourceRoot": "src",
  21. "prefix": "app",
  22. "architect": {
  23. "build": {
  24. "builder": "@angular-devkit/build-angular:application",
  25. "options": {
  26. "outputPath": "dist/front-p-educativa",
  27. "index": "src/index.html",
  28. "browser": "src/main.ts",
  29. "polyfills": [
  30. "zone.js"
  31. ],
  32. "tsConfig": "tsconfig.app.json",
  33. "assets": [
  34. "src/favicon.ico",
  35. "src/assets"
  36. ],
  37. "styles": [
  38. "src/custom-theme.scss",
  39. "src/styles.css"
  40. ],
  41. "scripts": []
  42. },
  43. "configurations": {
  44. "production": {
  45. "budgets": [
  46. {
  47. "type": "initial",
  48. "maximumWarning": "500kb",
  49. "maximumError": "1mb"
  50. },
  51. {
  52. "type": "anyComponentStyle",
  53. "maximumWarning": "2kb",
  54. "maximumError": "4kb"
  55. }
  56. ],
  57. "outputHashing": "all"
  58. },
  59. "development": {
  60. "optimization": false,
  61. "extractLicenses": false,
  62. "sourceMap": true
  63. }
  64. },
  65. "defaultConfiguration": "production"
  66. },
  67. "serve": {
  68. "builder": "@angular-devkit/build-angular:dev-server",
  69. "configurations": {
  70. "production": {
  71. "buildTarget": "FrontP-Educativa:build:production"
  72. },
  73. "development": {
  74. "buildTarget": "FrontP-Educativa:build:development"
  75. }
  76. },
  77. "defaultConfiguration": "development"
  78. },
  79. "extract-i18n": {
  80. "builder": "@angular-devkit/build-angular:extract-i18n",
  81. "options": {
  82. "buildTarget": "FrontP-Educativa:build"
  83. }
  84. },
  85. "test": {
  86. "builder": "@angular-devkit/build-angular:karma",
  87. "options": {
  88. "polyfills": [
  89. "zone.js",
  90. "zone.js/testing"
  91. ],
  92. "tsConfig": "tsconfig.spec.json",
  93. "assets": [
  94. "src/favicon.ico",
  95. "src/assets"
  96. ],
  97. "styles": [
  98. "@angular/material/prebuilt-themes/indigo-pink.css",
  99. "src/styles.css",
  100. "node_modules/@fortawesome/fontawesome-free/css/all.css"
  101. ],
  102. "scripts": []
  103. }
  104. }
  105. }
  106. }
  107. },
  108. "cli": {
  109. "analytics": "0d407eb0-a044-4698-a312-3f1d23165a6c"
  110. }
  111. }