You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
3.0 KiB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "awesomemicroservices.client": {
  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/awesomemicroservices.client",
  27. "index": "src/index.html",
  28. "browser": "src/main.ts",
  29. "polyfills": [
  30. "zone.js"
  31. ],
  32. "tsConfig": "tsconfig.app.json",
  33. "assets": [
  34. {
  35. "glob": "**/*",
  36. "input": "public"
  37. }
  38. ],
  39. "styles": [
  40. "src/styles.css"
  41. ],
  42. "scripts": []
  43. },
  44. "configurations": {
  45. "production": {
  46. "budgets": [
  47. {
  48. "type": "initial",
  49. "maximumWarning": "500kB",
  50. "maximumError": "1MB"
  51. },
  52. {
  53. "type": "anyComponentStyle",
  54. "maximumWarning": "2kB",
  55. "maximumError": "4kB"
  56. }
  57. ],
  58. "outputHashing": "all"
  59. },
  60. "development": {
  61. "optimization": false,
  62. "extractLicenses": false,
  63. "sourceMap": true
  64. }
  65. },
  66. "defaultConfiguration": "production"
  67. },
  68. "serve": {
  69. "builder": "@angular-devkit/build-angular:dev-server",
  70. "configurations": {
  71. "production": {
  72. "buildTarget": "awesomemicroservices.client:build:production"
  73. },
  74. "development": {
  75. "buildTarget": "awesomemicroservices.client:build:development"
  76. }
  77. },
  78. "defaultConfiguration": "development",
  79. "options": {
  80. "proxyConfig": "src/proxy.conf.js",
  81. "port": 56902
  82. }
  83. },
  84. "extract-i18n": {
  85. "builder": "@angular-devkit/build-angular:extract-i18n"
  86. },
  87. "test": {
  88. "builder": "@angular-devkit/build-angular:karma",
  89. "options": {
  90. "polyfills": [
  91. "zone.js",
  92. "zone.js/testing"
  93. ],
  94. "tsConfig": "tsconfig.spec.json",
  95. "assets": [
  96. {
  97. "glob": "**/*",
  98. "input": "public"
  99. }
  100. ],
  101. "styles": [
  102. "src/styles.css"
  103. ],
  104. "scripts": [],
  105. "karmaConfig": "karma.conf.js"
  106. }
  107. }
  108. }
  109. }
  110. }
  111. }