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.

190 lines
6.5 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"],
  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. },
  117. "configurations": {
  118. "production": {
  119. "budgets": [
  120. {
  121. "type": "initial",
  122. "maximumWarning": "2mb",
  123. "maximumError": "2.5mb"
  124. },
  125. {
  126. "type": "anyComponentStyle",
  127. "maximumWarning": "2kb",
  128. "maximumError": "4kb"
  129. }
  130. ],
  131. "fileReplacements": [
  132. {
  133. "replace": "src/environments/environment.ts",
  134. "with": "src/environments/environment.prod.ts"
  135. }
  136. ],
  137. "outputHashing": "all"
  138. },
  139. "development": {
  140. "buildOptimizer": false,
  141. "optimization": false,
  142. "vendorChunk": true,
  143. "extractLicenses": false,
  144. "sourceMap": true,
  145. "namedChunks": true
  146. }
  147. },
  148. "defaultConfiguration": "production"
  149. },
  150. "serve": {
  151. "builder": "@angular-devkit/build-angular:dev-server",
  152. "configurations": {
  153. "production": {
  154. "buildTarget": "BookStore:build:production"
  155. },
  156. "development": {
  157. "buildTarget": "BookStore:build:development"
  158. }
  159. },
  160. "defaultConfiguration": "development"
  161. },
  162. "extract-i18n": {
  163. "builder": "@angular-devkit/build-angular:extract-i18n",
  164. "options": {
  165. "buildTarget": "BookStore:build"
  166. }
  167. },
  168. "test": {
  169. "builder": "@angular-devkit/build-angular:karma",
  170. "options": {
  171. "main": "src/test.ts",
  172. "polyfills": "src/polyfills.ts",
  173. "tsConfig": "tsconfig.spec.json",
  174. "karmaConfig": "karma.conf.js",
  175. "inlineStyleLanguage": "scss",
  176. "assets": ["src/favicon.ico", "src/assets"],
  177. "styles": ["src/styles.scss"],
  178. "scripts": []
  179. }
  180. },
  181. "lint": {
  182. "builder": "@angular-eslint/builder:lint",
  183. "options": {
  184. "lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
  185. }
  186. }
  187. }
  188. }
  189. }
  190. }