-
Notifications
You must be signed in to change notification settings - Fork 4
/
angular.json
152 lines (152 loc) · 4.12 KB
/
angular.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"packageManager": "pnpm",
"schematicCollections": [
"@angular-eslint/schematics"
],
"analytics": false
},
"newProjectRoot": "projects",
"projects": {
"armonik-admin-gui": {
"i18n": {
"sourceLocale": "en",
"locales": {
"fr": "src/locale/messages.fr.xlf"
}
},
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"inlineTemplate": true,
"inlineStyle": true,
"standalone": true
},
"@schematics/angular:directive": {
"standalone": true
},
"@schematics/angular:pipe": {
"standalone": true
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular/build:application",
"options": {
"preserveSymlinks": true,
"localize": true,
"outputPath": {
"base": "dist/admin"
},
"index": "src/index.html",
"tsConfig": "tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
{
"inject": false,
"input": "@angular/material/prebuilt-themes/deeppurple-amber.css"
},
{
"inject": true,
"input": "@angular/material/prebuilt-themes/indigo-pink.css"
},
{
"inject": false,
"input": "@angular/material/prebuilt-themes/pink-bluegrey.css"
},
{
"inject": false,
"input": "@angular/material/prebuilt-themes/purple-green.css"
},
"src/styles.css",
"src/themes.css"
],
"scripts": [],
"browser": "src/main.ts"
},
"configurations": {
"en": {
"localize": [
"en"
]
},
"fr": {
"localize": [
"fr"
]
},
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular/build:dev-server",
"options": {
"proxyConfig": "src/proxy.conf.json"
},
"configurations": {
"production": {
"buildTarget": "armonik-admin-gui:build:production"
},
"development": {
"buildTarget": "armonik-admin-gui:build:development,en"
},
"fr": {
"buildTarget": "armonik-admin-gui:build:development,fr"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "ng-extract-i18n-merge:ng-extract-i18n-merge",
"options": {
"browserTarget": "armonik-admin-gui:build",
"format": "xlf2",
"includeContext": true,
"outputPath": "src/locale",
"targetFiles": [
"messages.fr.xlf"
]
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
}
}
}
}