暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

angular.json 2.0KB

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