Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

angular.json 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "svc-configure-frontend": {
  7. "projectType": "application",
  8. "schematics": {
  9. "@schematics/angular:component": {
  10. "style": "scss"
  11. }
  12. },
  13. "root": "",
  14. "sourceRoot": "src",
  15. "prefix": "app",
  16. "architect": {
  17. "build": {
  18. "builder": "@angular-devkit/build-angular:application",
  19. "options": {
  20. "outputPath": "dist/svc-configure-frontend",
  21. "index": "src/index.html",
  22. "browser": "src/main.ts",
  23. "polyfills": [
  24. "zone.js"
  25. ],
  26. "tsConfig": "tsconfig.app.json",
  27. "inlineStyleLanguage": "scss",
  28. "assets": [
  29. {
  30. "glob": "**/*",
  31. "input": "public"
  32. },
  33. {
  34. "glob": "**/*",
  35. "input": "src/assets"
  36. }
  37. ],
  38. "styles": [
  39. "src/styles.scss"
  40. ],
  41. "scripts": []
  42. },
  43. "configurations": {
  44. "production": {
  45. "budgets": [
  46. {
  47. "type": "initial",
  48. "maximumWarning": "1MB",
  49. "maximumError": "2MB"
  50. },
  51. {
  52. "type": "anyComponentStyle",
  53. "maximumWarning": "4kB",
  54. "maximumError": "8kB"
  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": "svc-configure-frontend:build:production"
  72. },
  73. "development": {
  74. "buildTarget": "svc-configure-frontend:build:development",
  75. "proxyConfig": "proxy.conf.json"
  76. }
  77. },
  78. "defaultConfiguration": "development"
  79. },
  80. "extract-i18n": {
  81. "builder": "@angular-devkit/build-angular:extract-i18n"
  82. },
  83. "test": {
  84. "builder": "@angular-devkit/build-angular:karma",
  85. "options": {
  86. "polyfills": [
  87. "zone.js",
  88. "zone.js/testing"
  89. ],
  90. "tsConfig": "tsconfig.spec.json",
  91. "inlineStyleLanguage": "scss",
  92. "assets": [
  93. {
  94. "glob": "**/*",
  95. "input": "public"
  96. },
  97. {
  98. "glob": "**/*",
  99. "input": "src/assets"
  100. }
  101. ],
  102. "styles": [
  103. "src/styles.scss"
  104. ],
  105. "scripts": []
  106. }
  107. }
  108. }
  109. }
  110. },
  111. "cli": {
  112. "analytics": "7022959f-822a-4e97-8b55-0e5d324e3595"
  113. }
  114. }