angular.json 3.0 KB

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