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.

192 lines
6.6 KiB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "cli": {
  4. "analytics": false,
  5. "schematicCollections": ["@angular-eslint/schematics"]
  6. },
  7. "version": 1,
  8. "newProjectRoot": "projects",
  9. "projects": {
  10. "BookStore": {
  11. "projectType": "application",
  12. "schematics": {
  13. "@schematics/angular:component": {
  14. "style": "scss"
  15. }
  16. },
  17. "root": "",
  18. "sourceRoot": "src",
  19. "prefix": "app",
  20. "architect": {
  21. "build": {
  22. "builder": "@angular-devkit/build-angular:browser",
  23. "options": {
  24. "outputPath": "dist/BookStore",
  25. "index": "src/index.html",
  26. "main": "src/main.ts",
  27. "polyfills": "src/polyfills.ts",
  28. "tsConfig": "tsconfig.app.json",
  29. "inlineStyleLanguage": "scss",
  30. "allowedCommonJsDependencies": ["chart.js", "js-sha256"],
  31. "assets": ["src/favicon.ico", "src/assets", "src/manifest.webmanifest"],
  32. "styles": [
  33. {
  34. "input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/bootstrap-dim.css",
  35. "inject": false,
  36. "bundleName": "bootstrap-dim"
  37. },
  38. {
  39. "input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/ng-bundle.css",
  40. "inject": false,
  41. "bundleName": "ng-bundle"
  42. },
  43. {
  44. "input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/side-menu/layout-bundle.css",
  45. "inject": false,
  46. "bundleName": "layout-bundle"
  47. },
  48. {
  49. "input": "node_modules/@abp/ng.theme.lepton-x/assets/css/abp-bundle.css",
  50. "inject": false,
  51. "bundleName": "abp-bundle"
  52. },
  53. {
  54. "input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/bootstrap-dim.rtl.css",
  55. "inject": false,
  56. "bundleName": "bootstrap-dim.rtl"
  57. },
  58. {
  59. "input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/font-bundle.rtl.css",
  60. "inject": false,
  61. "bundleName": "font-bundle.rtl"
  62. },
  63. {
  64. "input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/font-bundle.css",
  65. "inject": false,
  66. "bundleName": "font-bundle"
  67. },
  68. {
  69. "input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/ng-bundle.rtl.css",
  70. "inject": false,
  71. "bundleName": "ng-bundle.rtl"
  72. },
  73. {
  74. "input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/side-menu/layout-bundle.rtl.css",
  75. "inject": false,
  76. "bundleName": "layout-bundle.rtl"
  77. },
  78. {
  79. "input": "node_modules/@abp/ng.theme.lepton-x/assets/css/abp-bundle.rtl.css",
  80. "inject": false,
  81. "bundleName": "abp-bundle.rtl"
  82. },
  83. {
  84. "input": "node_modules/bootstrap-icons/font/bootstrap-icons.css",
  85. "inject": true,
  86. "bundleName": "bootstrap-icons"
  87. },
  88. {
  89. "input": "node_modules/@fortawesome/fontawesome-free/css/all.min.css",
  90. "inject": true,
  91. "bundleName": "fontawesome-all.min"
  92. },
  93. {
  94. "input": "node_modules/@fortawesome/fontawesome-free/css/v4-shims.min.css",
  95. "inject": true,
  96. "bundleName": "fontawesome-v4-shims.min"
  97. },
  98. {
  99. "input": "node_modules/@swimlane/ngx-datatable/index.css",
  100. "inject": true,
  101. "bundleName": "ngx-datatable-index"
  102. },
  103. {
  104. "input": "node_modules/@swimlane/ngx-datatable/assets/icons.css",
  105. "inject": true,
  106. "bundleName": "ngx-datatable-icons"
  107. },
  108. {
  109. "input": "node_modules/@swimlane/ngx-datatable/themes/material.css",
  110. "inject": true,
  111. "bundleName": "ngx-datatable-material"
  112. },
  113. "src/styles.scss"
  114. ],
  115. "scripts": [],
  116. "serviceWorker": true,
  117. "ngswConfigPath": "ngsw-config.json"
  118. },
  119. "configurations": {
  120. "production": {
  121. "budgets": [
  122. {
  123. "type": "initial",
  124. "maximumWarning": "2mb",
  125. "maximumError": "2.5mb"
  126. },
  127. {
  128. "type": "anyComponentStyle",
  129. "maximumWarning": "2kb",
  130. "maximumError": "4kb"
  131. }
  132. ],
  133. "fileReplacements": [
  134. {
  135. "replace": "src/environments/environment.ts",
  136. "with": "src/environments/environment.prod.ts"
  137. }
  138. ],
  139. "outputHashing": "all"
  140. },
  141. "development": {
  142. "buildOptimizer": false,
  143. "optimization": false,
  144. "vendorChunk": true,
  145. "extractLicenses": false,
  146. "sourceMap": true,
  147. "namedChunks": true
  148. }
  149. },
  150. "defaultConfiguration": "production"
  151. },
  152. "serve": {
  153. "builder": "@angular-devkit/build-angular:dev-server",
  154. "configurations": {
  155. "production": {
  156. "buildTarget": "BookStore:build:production"
  157. },
  158. "development": {
  159. "buildTarget": "BookStore:build:development"
  160. }
  161. },
  162. "defaultConfiguration": "development"
  163. },
  164. "extract-i18n": {
  165. "builder": "@angular-devkit/build-angular:extract-i18n",
  166. "options": {
  167. "buildTarget": "BookStore:build"
  168. }
  169. },
  170. "test": {
  171. "builder": "@angular-devkit/build-angular:karma",
  172. "options": {
  173. "main": "src/test.ts",
  174. "polyfills": "src/polyfills.ts",
  175. "tsConfig": "tsconfig.spec.json",
  176. "karmaConfig": "karma.conf.js",
  177. "inlineStyleLanguage": "scss",
  178. "assets": ["src/favicon.ico", "src/assets", "src/manifest.webmanifest"],
  179. "styles": ["src/styles.scss"],
  180. "scripts": []
  181. }
  182. },
  183. "lint": {
  184. "builder": "@angular-eslint/builder:lint",
  185. "options": {
  186. "lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
  187. }
  188. }
  189. }
  190. }
  191. }
  192. }