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.

преди 1 година
преди 1 година
преди 1 година
преди 1 година
преди 1 година
преди 1 година
преди 1 година
преди 1 година
преди 1 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "app": {
  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": "www",
  17. "index": "src/index.html",
  18. "main": "src/main.ts",
  19. "polyfills": "src/polyfills.ts",
  20. "tsConfig": "tsconfig.app.json",
  21. "inlineStyleLanguage": "scss",
  22. "assets": [
  23. {
  24. "glob": "**/*",
  25. "input": "src/assets",
  26. "output": "assets"
  27. },
  28. {
  29. "glob": "**/*.svg",
  30. "input": "node_modules/ionicons/dist/ionicons/svg",
  31. "output": "./svg"
  32. },
  33. "src/manifest.webmanifest"
  34. ],
  35. "styles": ["src/theme/variables.scss", "src/global.scss"],
  36. "scripts": [],
  37. "serviceWorker": true,
  38. "ngswConfigPath": "ngsw-config.json"
  39. },
  40. "configurations": {
  41. "production": {
  42. "budgets": [
  43. {
  44. "type": "initial",
  45. "maximumWarning": "2mb",
  46. "maximumError": "5mb"
  47. },
  48. {
  49. "type": "anyComponentStyle",
  50. "maximumWarning": "5kb",
  51. "maximumError": "10kb"
  52. }
  53. ],
  54. "fileReplacements": [
  55. {
  56. "replace": "src/environments/environment.ts",
  57. "with": "src/environments/environment.prod.ts"
  58. }
  59. ],
  60. "outputHashing": "all"
  61. },
  62. "development": {
  63. "buildOptimizer": false,
  64. "optimization": false,
  65. "vendorChunk": true,
  66. "extractLicenses": false,
  67. "sourceMap": true,
  68. "namedChunks": true
  69. },
  70. "ci": {
  71. "progress": false
  72. }
  73. },
  74. "defaultConfiguration": "production"
  75. },
  76. "serve": {
  77. "builder": "@angular-devkit/build-angular:dev-server",
  78. "configurations": {
  79. "production": {
  80. "buildTarget": "app:build:production"
  81. },
  82. "development": {
  83. "buildTarget": "app:build:development"
  84. },
  85. "ci": {
  86. "progress": false
  87. }
  88. },
  89. "defaultConfiguration": "development"
  90. },
  91. "extract-i18n": {
  92. "builder": "@angular-devkit/build-angular:extract-i18n",
  93. "options": {
  94. "buildTarget": "app:build"
  95. }
  96. },
  97. "test": {
  98. "builder": "@angular-devkit/build-angular:karma",
  99. "options": {
  100. "main": "src/test.ts",
  101. "polyfills": "src/polyfills.ts",
  102. "tsConfig": "tsconfig.spec.json",
  103. "karmaConfig": "karma.conf.js",
  104. "inlineStyleLanguage": "scss",
  105. "assets": [
  106. {
  107. "glob": "**/*",
  108. "input": "src/assets",
  109. "output": "assets"
  110. },
  111. {
  112. "glob": "**/*.svg",
  113. "input": "node_modules/ionicons/dist/ionicons/svg",
  114. "output": "./svg"
  115. },
  116. "src/manifest.webmanifest"
  117. ],
  118. "styles": ["src/theme/variables.scss", "src/global.scss"],
  119. "scripts": []
  120. },
  121. "configurations": {
  122. "ci": {
  123. "progress": false,
  124. "watch": false
  125. }
  126. }
  127. },
  128. "lint": {
  129. "builder": "@angular-eslint/builder:lint",
  130. "options": {
  131. "lintFilePatterns": [
  132. "src/**/*.ts",
  133. "src/**/*.html"
  134. ]
  135. }
  136. }
  137. }
  138. }
  139. },
  140. "cli": {
  141. "schematicCollections": [
  142. "@ionic/angular-toolkit"
  143. ]
  144. },
  145. "schematics": {
  146. "@ionic/angular-toolkit:component": {
  147. "styleext": "scss"
  148. },
  149. "@ionic/angular-toolkit:page": {
  150. "styleext": "scss"
  151. }
  152. }
  153. }