angular.json 2.8 KB

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