-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathangular.json
100 lines (100 loc) · 4.41 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
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"defaultProject": "logi-builder",
"newProjectRoot": "projects",
"projects": {
"logi-builder": {
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"configurations": {
"development": {
"buildOptimizer": false,
"extractLicenses": false,
"namedChunks": true,
"optimization": false,
"sourceMap": true,
"vendorChunk": true
},
"production": {
"budgets": [
{
"maximumError": "10mb",
"maximumWarning": "1mb",
"type": "initial"
},
{
"maximumError": "1mb",
"maximumWarning": "1mb",
"type": "anyComponentStyle"
}
],
"fileReplacements": [
{
"replace": "src/web/environments/environment.ts",
"with": "src/web/environments/environment.prod.ts"
}
],
"outputHashing": "all"
}
},
"defaultConfiguration": "production",
"options": {
"assets": [
"node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css",
"node_modules/@grapecity/spread-excelio/dist/gc.spread.excelio.min.js",
"node_modules/@grapecity/spread-sheets-charts/dist/gc.spread.sheets.charts.min.js",
"node_modules/@grapecity/spread-sheets/dist/gc.spread.sheets.all.min.js",
"node_modules/@grapecity/spread-sheets/styles/gc.spread.sheets.excel2016colorful.css",
"src/web/assets/fonts/bahnschrift/font.css",
"src/web/assets/fonts/roboto/font.css",
"src/web/assets/fonts/roboto_mono/font.css",
"src/web/assets/iconfont/material-icons.css",
"src/web/assets/styles/curie-theme.css",
"src/web/common/about/img_about.png",
"src/web/assets"
],
"index": "src/index.html",
"inlineStyleLanguage": "scss",
"main": "src/main.ts",
"outputPath": "dist/logi-builder",
"polyfills": "src/polyfills.ts",
"scripts": [],
"tsConfig": "tsconfig.app.json"
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "logi-builder:build"
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"development": {
"browserTarget": "logi-builder:build:development"
},
"production": {
"browserTarget": "logi-builder:build:production"
}
},
"defaultConfiguration": "development"
}
},
"prefix": "app",
"projectType": "application",
"root": "",
"schematics": {
"@schematics/angular:application": {
"strict": true
},
"@schematics/angular:component": {
"style": "scss"
}
},
"sourceRoot": "."
}
},
"version": 1
}