angular.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "ng-template": {
  7. "projectType": "application",
  8. "schematics": {
  9. "@schematics/angular:component": {
  10. "style": "scss"
  11. }
  12. },
  13. "root": "",
  14. "sourceRoot": "src",
  15. "prefix": "app",
  16. "architect": {
  17. "build": {
  18. "builder": "@angular-devkit/build-angular:application",
  19. "options": {
  20. "outputPath": "dist/ng-template",
  21. "index": "src/index.html",
  22. "browser": "src/main.ts",
  23. "polyfills": [
  24. "zone.js"
  25. ],
  26. "tsConfig": "tsconfig.app.json",
  27. "inlineStyleLanguage": "scss",
  28. "assets": [
  29. "src/favicon.ico",
  30. "src/assets",
  31. "src/config"
  32. ],
  33. "styles": [
  34. "src/styles.scss",
  35. "@angular/material/prebuilt-themes/deeppurple-amber.css"
  36. ],
  37. "scripts": []
  38. },
  39. "configurations": {
  40. "production": {
  41. "budgets": [
  42. {
  43. "type": "initial",
  44. "maximumWarning": "500kb",
  45. "maximumError": "1mb"
  46. },
  47. {
  48. "type": "anyComponentStyle",
  49. "maximumWarning": "2kb",
  50. "maximumError": "4kb"
  51. }
  52. ],
  53. "outputHashing": "all"
  54. },
  55. "development": {
  56. "optimization": false,
  57. "extractLicenses": false,
  58. "sourceMap": true
  59. }
  60. },
  61. "defaultConfiguration": "production"
  62. },
  63. "serve": {
  64. "builder": "@angular-devkit/build-angular:dev-server",
  65. "configurations": {
  66. "production": {
  67. "buildTarget": "ng-template:build:production"
  68. },
  69. "development": {
  70. "buildTarget": "ng-template:build:development"
  71. }
  72. },
  73. "defaultConfiguration": "development"
  74. },
  75. "extract-i18n": {
  76. "builder": "@angular-devkit/build-angular:extract-i18n",
  77. "options": {
  78. "buildTarget": "ng-template:build"
  79. }
  80. },
  81. "test": {
  82. "builder": "@angular-devkit/build-angular:karma",
  83. "options": {
  84. "polyfills": [
  85. "zone.js",
  86. "zone.js/testing"
  87. ],
  88. "tsConfig": "tsconfig.spec.json",
  89. "inlineStyleLanguage": "scss",
  90. "assets": [
  91. "src/favicon.ico",
  92. "src/assets"
  93. ],
  94. "styles": [
  95. "src/styles.scss"
  96. ],
  97. "scripts": []
  98. }
  99. }
  100. }
  101. }
  102. }
  103. }