You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
3.3KB

  1. {
  2. "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  3. "version": 1,
  4. "newProjectRoot": "projects",
  5. "projects": {
  6. "ots-landing-page-ssr": {
  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/ots-landing-page-ssr",
  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. ],
  32. "styles": [
  33. "src/assets/styles/bootstrapv4/bootstrap.min.css",
  34. "src/assets/fonts/fontawesome-all.css",
  35. "src/styles.scss"
  36. ],
  37. "scripts": [],
  38. "server": "src/main.server.ts",
  39. "prerender": true,
  40. "ssr": {
  41. "entry": "server.ts"
  42. }
  43. },
  44. "configurations": {
  45. "production": {
  46. "budgets": [
  47. {
  48. "type": "initial",
  49. "maximumWarning": "500kb",
  50. "maximumError": "1mb"
  51. },
  52. {
  53. "type": "anyComponentStyle",
  54. "maximumWarning": "2kb",
  55. "maximumError": "4kb"
  56. }
  57. ],
  58. "outputHashing": "all"
  59. },
  60. "development": {
  61. "optimization": false,
  62. "extractLicenses": false,
  63. "sourceMap": true,
  64. "fileReplacements": [
  65. {
  66. "replace": "src/environments/environment.ts",
  67. "with": "src/environments/environment.development.ts"
  68. }
  69. ]
  70. }
  71. },
  72. "defaultConfiguration": "production"
  73. },
  74. "serve": {
  75. "builder": "@angular-devkit/build-angular:dev-server",
  76. "configurations": {
  77. "production": {
  78. "buildTarget": "ots-landing-page-ssr:build:production"
  79. },
  80. "development": {
  81. "buildTarget": "ots-landing-page-ssr:build:development"
  82. }
  83. },
  84. "defaultConfiguration": "development"
  85. },
  86. "extract-i18n": {
  87. "builder": "@angular-devkit/build-angular:extract-i18n",
  88. "options": {
  89. "buildTarget": "ots-landing-page-ssr:build"
  90. }
  91. },
  92. "test": {
  93. "builder": "@angular-devkit/build-angular:karma",
  94. "options": {
  95. "polyfills": [
  96. "zone.js",
  97. "zone.js/testing"
  98. ],
  99. "tsConfig": "tsconfig.spec.json",
  100. "inlineStyleLanguage": "scss",
  101. "assets": [
  102. "src/favicon.ico",
  103. "src/assets"
  104. ],
  105. "styles": [
  106. "src/styles.scss"
  107. ],
  108. "scripts": []
  109. }
  110. }
  111. }
  112. }
  113. },
  114. "cli": {
  115. "analytics": "f0dfc0c6-6e26-4740-8a9c-96d4437f02ef"
  116. }
  117. }