repository to manage all files related to the makeathon farm bot project (Software + Documentation).
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.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "Frontend": {
  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/frontend",
  17. "index": "src/index.html",
  18. "main": "src/main.ts",
  19. "polyfills": "src/polyfills.ts",
  20. "tsConfig": "tsconfig.app.json",
  21. "assets": [
  22. "src/favicon.ico",
  23. "src/assets"
  24. ],
  25. "styles": [
  26. "src/custom-theme.scss",
  27. "src/styles.css",
  28. "node_modules/leaflet/dist/leaflet.css"
  29. ],
  30. "scripts": []
  31. },
  32. "configurations": {
  33. "production": {
  34. "budgets": [
  35. {
  36. "type": "initial",
  37. "maximumWarning": "500kb",
  38. "maximumError": "1mb"
  39. },
  40. {
  41. "type": "anyComponentStyle",
  42. "maximumWarning": "2kb",
  43. "maximumError": "4kb"
  44. }
  45. ],
  46. "fileReplacements": [
  47. {
  48. "replace": "src/environments/environment.ts",
  49. "with": "src/environments/environment.prod.ts"
  50. }
  51. ],
  52. "outputHashing": "all"
  53. },
  54. "development": {
  55. "buildOptimizer": false,
  56. "optimization": false,
  57. "vendorChunk": true,
  58. "extractLicenses": false,
  59. "sourceMap": true,
  60. "namedChunks": true
  61. }
  62. },
  63. "defaultConfiguration": "production"
  64. },
  65. "serve": {
  66. "builder": "@angular-devkit/build-angular:dev-server",
  67. "configurations": {
  68. "production": {
  69. "browserTarget": "Frontend:build:production"
  70. },
  71. "development": {
  72. "browserTarget": "Frontend:build:development"
  73. }
  74. },
  75. "defaultConfiguration": "development"
  76. },
  77. "extract-i18n": {
  78. "builder": "@angular-devkit/build-angular:extract-i18n",
  79. "options": {
  80. "browserTarget": "Frontend:build"
  81. }
  82. },
  83. "test": {
  84. "builder": "@angular-devkit/build-angular:karma",
  85. "options": {
  86. "main": "src/test.ts",
  87. "polyfills": "src/polyfills.ts",
  88. "tsConfig": "tsconfig.spec.json",
  89. "karmaConfig": "karma.conf.js",
  90. "assets": [
  91. "src/favicon.ico",
  92. "src/assets"
  93. ],
  94. "styles": [
  95. "src/custom-theme.scss",
  96. "src/styles.css",
  97. "node_modules/leaflet/dist/leaflet.css"
  98. ],
  99. "scripts": []
  100. }
  101. }
  102. }
  103. }
  104. }
  105. }