-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.json
111 lines (111 loc) · 3.06 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"analytics": false,
"packageManager": "yarn"
},
"newProjectRoot": "projects",
"projects": {
"example-library": {
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/example-library/ng-package.json",
"tsConfig": "projects/example-library/tsconfig.lib.json"
}
}
},
"prefix": "lib",
"projectType": "library",
"root": "projects/example-library",
"sourceRoot": "projects/example-library"
},
"repro-app": {
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"configurations": {
"development": {
"extractLicenses": false,
"optimization": false,
"sourceMap": true
},
"production": {
"budgets": [
{
"maximumError": "1mb",
"maximumWarning": "500kb",
"type": "initial"
},
{
"maximumError": "4kb",
"maximumWarning": "2kb",
"type": "anyComponentStyle"
}
],
"outputHashing": "all"
}
},
"defaultConfiguration": "production",
"options": {
"assets": [
"projects/demo/src/favicon.ico",
"projects/demo/src/assets"
],
"browser": "projects/demo/src/main.ts",
"index": "projects/demo/src/index.html",
"localize": [
"pt-PT"
],
"outputPath": "dist/repro-app",
"polyfills": [
"@angular/localize/init",
"zone.js"
],
"scripts": [
],
"styles": [
"projects/demo/src/styles.css"
],
"tsConfig": "projects/demo/tsconfig.app.json"
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "repro-app:build",
"outputPath": "locales"
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"development": {
"buildTarget": "repro-app:build:development"
},
"production": {
"buildTarget": "repro-app:build:production"
}
},
"defaultConfiguration": "development"
}
},
"i18n": {
"locales": {
"pt-PT": {
"translation": "locales/messages.pt-PT.xlf"
}
},
"sourceLocale": "en-US"
},
"prefix": "app",
"projectType": "application",
"root": "projects/demo",
"schematics": {
},
"sourceRoot": "projects/demo/src"
}
},
"version": 1
}