angular.json 4.0 KB

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