Laten we dit eens lekker standalone proberen te maken
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.

angular.json 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "eos-beacon": {
  7. "root": "",
  8. "sourceRoot": "src",
  9. "projectType": "application",
  10. "prefix": "app",
  11. "schematics": {
  12. "@schematics/angular:component": {
  13. "styleext": "scss"
  14. }
  15. },
  16. "architect": {
  17. "build": {
  18. "builder": "@angular-devkit/build-angular:browser",
  19. "options": {
  20. "outputPath": "dist/eos-beacon",
  21. "index": "src/index.html",
  22. "main": "src/main.ts",
  23. "polyfills": "src/polyfills.ts",
  24. "tsConfig": "src/tsconfig.app.json",
  25. "assets": [
  26. "src/favicon.ico",
  27. "src/assets"
  28. ],
  29. "styles": [
  30. "src/styles.scss"
  31. ],
  32. "scripts": []
  33. },
  34. "configurations": {
  35. "production": {
  36. "fileReplacements": [
  37. {
  38. "replace": "src/environments/environment.ts",
  39. "with": "src/environments/environment.prod.ts"
  40. }
  41. ],
  42. "optimization": true,
  43. "outputHashing": "all",
  44. "sourceMap": false,
  45. "extractCss": true,
  46. "namedChunks": false,
  47. "aot": true,
  48. "extractLicenses": true,
  49. "vendorChunk": false,
  50. "buildOptimizer": true,
  51. "budgets": [
  52. {
  53. "type": "initial",
  54. "maximumWarning": "2mb",
  55. "maximumError": "5mb"
  56. }
  57. ]
  58. }
  59. }
  60. },
  61. "serve": {
  62. "builder": "@angular-devkit/build-angular:dev-server",
  63. "options": {
  64. "browserTarget": "eos-beacon:build"
  65. },
  66. "configurations": {
  67. "production": {
  68. "browserTarget": "eos-beacon:build:production"
  69. }
  70. }
  71. },
  72. "extract-i18n": {
  73. "builder": "@angular-devkit/build-angular:extract-i18n",
  74. "options": {
  75. "browserTarget": "eos-beacon:build"
  76. }
  77. },
  78. "test": {
  79. "builder": "@angular-devkit/build-angular:karma",
  80. "options": {
  81. "main": "src/test.ts",
  82. "polyfills": "src/polyfills.ts",
  83. "tsConfig": "src/tsconfig.spec.json",
  84. "karmaConfig": "src/karma.conf.js",
  85. "styles": [
  86. "src/styles.scss"
  87. ],
  88. "scripts": [],
  89. "assets": [
  90. "src/favicon.ico",
  91. "src/assets"
  92. ]
  93. }
  94. },
  95. "lint": {
  96. "builder": "@angular-devkit/build-angular:tslint",
  97. "options": {
  98. "tsConfig": [
  99. "src/tsconfig.app.json",
  100. "src/tsconfig.spec.json"
  101. ],
  102. "exclude": [
  103. "**/node_modules/**"
  104. ]
  105. }
  106. }
  107. }
  108. },
  109. "eos-beacon-e2e": {
  110. "root": "e2e/",
  111. "projectType": "application",
  112. "prefix": "",
  113. "architect": {
  114. "e2e": {
  115. "builder": "@angular-devkit/build-angular:protractor",
  116. "options": {
  117. "protractorConfig": "e2e/protractor.conf.js",
  118. "devServerTarget": "eos-beacon:serve"
  119. },
  120. "configurations": {
  121. "production": {
  122. "devServerTarget": "eos-beacon:serve:production"
  123. }
  124. }
  125. },
  126. "lint": {
  127. "builder": "@angular-devkit/build-angular:tslint",
  128. "options": {
  129. "tsConfig": "e2e/tsconfig.e2e.json",
  130. "exclude": [
  131. "**/node_modules/**"
  132. ]
  133. }
  134. }
  135. }
  136. }
  137. },
  138. "defaultProject": "eos-beacon"
  139. }