angular.json 4.4 KB

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