angular.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "cli": {
  5. "packageManager": "npm",
  6. "analytics": false
  7. },
  8. "newProjectRoot": "projects",
  9. "projects": {
  10. "is": {
  11. "projectType": "application",
  12. "schematics": {},
  13. "root": "",
  14. "sourceRoot": "src",
  15. "prefix": "is",
  16. "architect": {
  17. "build": {
  18. "builder": "@angular/build:application",
  19. "options": {
  20. "browser": "src/main.ts",
  21. "tsConfig": "tsconfig.app.json",
  22. "assets": [
  23. {
  24. "glob": "**/*",
  25. "input": "public"
  26. }
  27. ],
  28. "styles": [
  29. "node_modules/@fortawesome/fontawesome-free/css/all.min.css",
  30. "src/styles.css"
  31. ]
  32. },
  33. "configurations": {
  34. "production": {
  35. "budgets": [
  36. {
  37. "type": "initial",
  38. "maximumWarning": "500kB",
  39. "maximumError": "1MB"
  40. },
  41. {
  42. "type": "anyComponentStyle",
  43. "maximumWarning": "4kB",
  44. "maximumError": "8kB"
  45. }
  46. ],
  47. "outputHashing": "all"
  48. },
  49. "development": {
  50. "optimization": false,
  51. "extractLicenses": false,
  52. "sourceMap": true
  53. }
  54. },
  55. "defaultConfiguration": "production"
  56. },
  57. "serve": {
  58. "builder": "@angular/build:dev-server",
  59. "configurations": {
  60. "production": {
  61. "buildTarget": "is:build:production"
  62. },
  63. "development": {
  64. "buildTarget": "is:build:development"
  65. }
  66. },
  67. "defaultConfiguration": "development"
  68. },
  69. "test": {
  70. "builder": "@angular/build:unit-test"
  71. }
  72. }
  73. }
  74. }
  75. }