source: Sources/frontend/angular.json@ 0e4e3d1

Last change on this file since 0e4e3d1 was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 2.7 KB
Line 
1{
2 "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3 "version": 1,
4 "newProjectRoot": "projects",
5 "projects": {
6 "finkiForumsFrontEnd": {
7 "projectType": "application",
8 "schematics": {},
9 "root": "",
10 "sourceRoot": "src",
11 "prefix": "app",
12 "architect": {
13 "build": {
14 "builder": "@angular-devkit/build-angular:browser",
15 "options": {
16 "outputPath": "dist/finki-forums-front-end",
17 "index": "src/index.html",
18 "main": "src/main.ts",
19 "polyfills": [
20 "zone.js"
21 ],
22 "tsConfig": "tsconfig.app.json",
23 "assets": [
24 "src/favicon.ico",
25 "src/assets"
26 ],
27 "styles": [
28 "src/styles.css"
29 ],
30 "scripts": []
31 },
32 "configurations": {
33 "production": {
34 "budgets": [
35 {
36 "type": "initial",
37 "maximumWarning": "500kb",
38 "maximumError": "1mb"
39 },
40 {
41 "type": "anyComponentStyle",
42 "maximumWarning": "2kb",
43 "maximumError": "4kb"
44 }
45 ],
46 "outputHashing": "all"
47 },
48 "development": {
49 "buildOptimizer": false,
50 "optimization": false,
51 "vendorChunk": true,
52 "extractLicenses": false,
53 "sourceMap": true,
54 "namedChunks": true
55 }
56 },
57 "defaultConfiguration": "production"
58 },
59 "serve": {
60 "builder": "@angular-devkit/build-angular:dev-server",
61 "configurations": {
62 "production": {
63 "browserTarget": "finkiForumsFrontEnd:build:production"
64 },
65 "development": {
66 "browserTarget": "finkiForumsFrontEnd:build:development"
67 }
68 },
69 "defaultConfiguration": "development"
70 },
71 "extract-i18n": {
72 "builder": "@angular-devkit/build-angular:extract-i18n",
73 "options": {
74 "browserTarget": "finkiForumsFrontEnd:build"
75 }
76 },
77 "test": {
78 "builder": "@angular-devkit/build-angular:karma",
79 "options": {
80 "polyfills": [
81 "zone.js",
82 "zone.js/testing"
83 ],
84 "tsConfig": "tsconfig.spec.json",
85 "assets": [
86 "src/favicon.ico",
87 "src/assets"
88 ],
89 "styles": [
90 "src/styles.css"
91 ],
92 "scripts": []
93 }
94 }
95 }
96 }
97 },
98 "cli": {
99 "analytics": false
100 }
101}
Note: See TracBrowser for help on using the repository browser.