Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

135 строки
3.9 KiB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "matsen-tool": {
  7. "projectType": "application",
  8. "schematics": {
  9. "@schematics/angular:component": {
  10. "style": "scss",
  11. "standalone": false
  12. },
  13. "@schematics/angular:directive": {
  14. "standalone": false
  15. },
  16. "@schematics/angular:pipe": {
  17. "standalone": false
  18. }
  19. },
  20. "root": "",
  21. "sourceRoot": "src",
  22. "prefix": "app",
  23. "architect": {
  24. "build": {
  25. "builder": "@angular-devkit/build-angular:application",
  26. "options": {
  27. "outputPath": "dist/matsen-tool",
  28. "index": "src/index.html",
  29. "browser": "src/main.ts",
  30. "polyfills": [
  31. "zone.js"
  32. ],
  33. "tsConfig": "tsconfig.app.json",
  34. "inlineStyleLanguage": "scss",
  35. "assets": [
  36. "src/favicon.ico",
  37. "src/assets"
  38. ],
  39. "styles": [
  40. "@angular/material/prebuilt-themes/indigo-pink.css",
  41. "node_modules/bootstrap/scss/bootstrap.scss",
  42. "node_modules/bootstrap-icons/font/bootstrap-icons.css",
  43. "src/styles.scss"
  44. ],
  45. "scripts": [
  46. "node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
  47. ]
  48. },
  49. "configurations": {
  50. "production": {
  51. "budgets": [
  52. {
  53. "type": "initial",
  54. "maximumWarning": "1mb",
  55. "maximumError": "2mb"
  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. "optimization": false,
  73. "extractLicenses": false,
  74. "sourceMap": true
  75. },
  76. "beta": {
  77. "optimization": false,
  78. "extractLicenses": false,
  79. "sourceMap": true,
  80. "fileReplacements": [
  81. {
  82. "replace": "src/environments/environment.ts",
  83. "with": "src/environments/environment.beta.ts"
  84. }
  85. ]
  86. }
  87. },
  88. "defaultConfiguration": "production"
  89. },
  90. "serve": {
  91. "builder": "@angular-devkit/build-angular:dev-server",
  92. "configurations": {
  93. "production": {
  94. "buildTarget": "matsen-tool:build:production"
  95. },
  96. "development": {
  97. "buildTarget": "matsen-tool:build:development"
  98. },
  99. "beta": {
  100. "buildTarget": "matsen-tool:build:beta"
  101. }
  102. },
  103. "defaultConfiguration": "development"
  104. },
  105. "extract-i18n": {
  106. "builder": "@angular-devkit/build-angular:extract-i18n",
  107. "options": {
  108. "buildTarget": "matsen-tool:build"
  109. }
  110. },
  111. "test": {
  112. "builder": "@angular-devkit/build-angular:karma",
  113. "options": {
  114. "polyfills": [
  115. "zone.js",
  116. "zone.js/testing"
  117. ],
  118. "tsConfig": "tsconfig.spec.json",
  119. "inlineStyleLanguage": "scss",
  120. "assets": [
  121. "src/favicon.ico",
  122. "src/assets"
  123. ],
  124. "styles": [
  125. "@angular/material/prebuilt-themes/indigo-pink.css",
  126. "src/styles.scss"
  127. ],
  128. "scripts": []
  129. }
  130. }
  131. }
  132. }
  133. }
  134. }