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

111 строки
3.0 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. "src/styles.scss"
  42. ],
  43. "scripts": []
  44. },
  45. "configurations": {
  46. "production": {
  47. "budgets": [
  48. {
  49. "type": "initial",
  50. "maximumWarning": "500kb",
  51. "maximumError": "1mb"
  52. },
  53. {
  54. "type": "anyComponentStyle",
  55. "maximumWarning": "2kb",
  56. "maximumError": "4kb"
  57. }
  58. ],
  59. "outputHashing": "all"
  60. },
  61. "development": {
  62. "optimization": false,
  63. "extractLicenses": false,
  64. "sourceMap": true
  65. }
  66. },
  67. "defaultConfiguration": "production"
  68. },
  69. "serve": {
  70. "builder": "@angular-devkit/build-angular:dev-server",
  71. "configurations": {
  72. "production": {
  73. "buildTarget": "matsen-tool:build:production"
  74. },
  75. "development": {
  76. "buildTarget": "matsen-tool:build:development"
  77. }
  78. },
  79. "defaultConfiguration": "development"
  80. },
  81. "extract-i18n": {
  82. "builder": "@angular-devkit/build-angular:extract-i18n",
  83. "options": {
  84. "buildTarget": "matsen-tool:build"
  85. }
  86. },
  87. "test": {
  88. "builder": "@angular-devkit/build-angular:karma",
  89. "options": {
  90. "polyfills": [
  91. "zone.js",
  92. "zone.js/testing"
  93. ],
  94. "tsConfig": "tsconfig.spec.json",
  95. "inlineStyleLanguage": "scss",
  96. "assets": [
  97. "src/favicon.ico",
  98. "src/assets"
  99. ],
  100. "styles": [
  101. "@angular/material/prebuilt-themes/indigo-pink.css",
  102. "src/styles.scss"
  103. ],
  104. "scripts": []
  105. }
  106. }
  107. }
  108. }
  109. }
  110. }