/
skylucky
/
p311_group_practice_assignment
Обзор
Документация
Войти
/
skylucky
/
p311_group_practice_assignment
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
angular.json
87 строк
2 KB
IT-Legion
Добавить командный Angular-проект Lesson для группы P311.
01 июл 2026, 20:51
01 июл 2026, 20:51
aa78325
Код
Авторство
О чём код?
{ "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "cli": { "packageManager": "npm", "analytics": "5f31ba9b-b27c-4cb4-b4a3-d39953c990c6" }, "newProjectRoot": "projects", "projects": { "lesson": { "projectType": "application", "schematics": {}, "root": "", "sourceRoot": "src", "prefix": "app", "architect": { "build": { "builder": "@angular/build:application", "options": { "browser": "src/main.ts", "tsConfig": "tsconfig.app.json", "assets": [ { "glob": "**/*", "input": "public" } ], "styles": [ "src/styles.css" ], "server": "src/main.server.ts", "outputMode": "server", "security": { "allowedHosts": ["*"] }, "ssr": { "entry": "src/server.ts" } }, "configurations": { "production": { "budgets": [ { "type": "initial", "maximumWarning": "500kB", "maximumError": "1MB" }, { "type": "anyComponentStyle", "maximumWarning": "4kB", "maximumError": "8kB" } ], "outputHashing": "all" }, "development": { "optimization": false, "extractLicenses": false, "sourceMap": true } }, "defaultConfiguration": "production" }, "serve": { "builder": "@angular/build:dev-server", "options": { "host": "0.0.0.0", "port": 4200, "allowedHosts": true }, "configurations": { "production": { "buildTarget": "lesson:build:production" }, "development": { "buildTarget": "lesson:build:development" } }, "defaultConfiguration": "development" }, "test": { "builder": "@angular/build:unit-test" } } } } }