Skip to content

Commit aa2a96a

Browse files
committed
commit for unstable version upgrade
1 parent 13ebd57 commit aa2a96a

File tree

6 files changed

+4564
-3364
lines changed

6 files changed

+4564
-3364
lines changed

angular.json

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"angular-fusioncharts": {
7+
"root": "",
8+
"sourceRoot": "src",
9+
"projectType": "application",
10+
"prefix": "app",
11+
"schematics": {},
12+
"architect": {
13+
"build": {
14+
"builder": "@angular-devkit/build-angular:browser",
15+
"options": {
16+
"outputPath": "dist/angular-fusioncharts",
17+
"index": "src/index.html",
18+
"main": "src/main.ts",
19+
"polyfills": "src/polyfills.ts",
20+
"tsConfig": "src/tsconfig.app.json",
21+
"assets": [
22+
"src/favicon.ico",
23+
"src/assets"
24+
],
25+
"styles": [
26+
"src/styles.css"
27+
],
28+
"scripts": [],
29+
"es5BrowserSupport": true
30+
},
31+
"configurations": {
32+
"production": {
33+
"fileReplacements": [
34+
{
35+
"replace": "src/environments/environment.ts",
36+
"with": "src/environments/environment.prod.ts"
37+
}
38+
],
39+
"optimization": true,
40+
"outputHashing": "all",
41+
"sourceMap": false,
42+
"extractCss": true,
43+
"namedChunks": false,
44+
"aot": true,
45+
"extractLicenses": true,
46+
"vendorChunk": false,
47+
"buildOptimizer": true,
48+
"budgets": [
49+
{
50+
"type": "initial",
51+
"maximumWarning": "2mb",
52+
"maximumError": "5mb"
53+
}
54+
]
55+
}
56+
}
57+
},
58+
"serve": {
59+
"builder": "@angular-devkit/build-angular:dev-server",
60+
"options": {
61+
"browserTarget": "angular-fusioncharts:build"
62+
},
63+
"configurations": {
64+
"production": {
65+
"browserTarget": "angular-fusioncharts:build:production"
66+
}
67+
}
68+
},
69+
"extract-i18n": {
70+
"builder": "@angular-devkit/build-angular:extract-i18n",
71+
"options": {
72+
"browserTarget": "angular-fusioncharts:build"
73+
}
74+
},
75+
"test": {
76+
"builder": "@angular-devkit/build-angular:karma",
77+
"options": {
78+
"main": "src/test.ts",
79+
"polyfills": "src/polyfills.ts",
80+
"tsConfig": "src/tsconfig.spec.json",
81+
"karmaConfig": "src/karma.conf.js",
82+
"styles": [
83+
"src/styles.css"
84+
],
85+
"scripts": [],
86+
"assets": [
87+
"src/favicon.ico",
88+
"src/assets"
89+
]
90+
}
91+
},
92+
"lint": {
93+
"builder": "@angular-devkit/build-angular:tslint",
94+
"options": {
95+
"tsConfig": [
96+
"src/tsconfig.app.json",
97+
"src/tsconfig.spec.json"
98+
],
99+
"exclude": [
100+
"**/node_modules/**"
101+
]
102+
}
103+
}
104+
}
105+
},
106+
"angular-fusioncharts-e2e": {
107+
"root": "e2e/",
108+
"projectType": "application",
109+
"prefix": "",
110+
"architect": {
111+
"e2e": {
112+
"builder": "@angular-devkit/build-angular:protractor",
113+
"options": {
114+
"protractorConfig": "e2e/protractor.conf.js",
115+
"devServerTarget": "angular-fusioncharts:serve"
116+
},
117+
"configurations": {
118+
"production": {
119+
"devServerTarget": "angular-fusioncharts:serve:production"
120+
}
121+
}
122+
},
123+
"lint": {
124+
"builder": "@angular-devkit/build-angular:tslint",
125+
"options": {
126+
"tsConfig": "e2e/tsconfig.e2e.json",
127+
"exclude": [
128+
"**/node_modules/**"
129+
]
130+
}
131+
}
132+
}
133+
}
134+
},
135+
"defaultProject": "angular-fusioncharts"
136+
}

0 commit comments

Comments
 (0)