File tree Expand file tree Collapse file tree 6 files changed +21
-15
lines changed Expand file tree Collapse file tree 6 files changed +21
-15
lines changed Original file line number Diff line number Diff line change 9
9
last 2 versions
10
10
Firefox ESR
11
11
not dead
12
- not IE 9-11 # For IE 9-11 support, remove 'not'.
12
+ not IE 9-11
13
+ not kaios 2.5
14
+ not op_mini all
Original file line number Diff line number Diff line change 9
9
"projectType" : " application" ,
10
10
"architect" : {
11
11
"build" : {
12
- "builder" : " @angular-devkit/build-angular:browser " ,
12
+ "builder" : " @angular-devkit/build-angular:application " ,
13
13
"options" : {
14
- "outputPath" : " dist" ,
14
+ "outputPath" : {
15
+ "base" : " dist"
16
+ },
15
17
"index" : " src/index.html" ,
16
- "main" : " src/main.ts" ,
17
18
"tsConfig" : " src/tsconfig.json" ,
18
- "polyfills" : " src/polyfills.ts" ,
19
+ "polyfills" : [
20
+ " src/polyfills.ts"
21
+ ],
19
22
"assets" : [
20
23
" src/assets" ,
21
24
" src/favicon.ico" ,
49
52
" src/assets/abp-web-resources/abp.freeze-ui.js" ,
50
53
" node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.moment.js"
51
54
],
52
- "vendorChunk" : true ,
53
55
"extractLicenses" : false ,
54
- "buildOptimizer" : false ,
55
56
"sourceMap" : true ,
56
57
"optimization" : false ,
57
- "namedChunks" : true
58
+ "namedChunks" : true ,
59
+ "browser" : " src/main.ts"
58
60
},
59
61
"configurations" : {
60
62
"production" : {
69
71
"sourceMap" : false ,
70
72
"namedChunks" : false ,
71
73
"extractLicenses" : true ,
72
- "vendorChunk" : false ,
73
- "buildOptimizer" : true ,
74
74
"fileReplacements" : [
75
75
{
76
76
"replace" : " src/environments/environment.ts" ,
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"pree2e" : " webdriver-manager update --standalone false --gecko false" ,
8
8
"e2e" : " protractor" ,
9
- "hmr" : " ng serve --host 0.0.0.0 --port 4200 --hmr " ,
9
+ "hmr" : " ng serve --host 0.0.0.0 --port 4200" ,
10
10
"lint" : " tslint --force --project src/tsconfig.json src/**/*.ts -t verbose" ,
11
11
"ng" : " ng" ,
12
- "start" : " ng serve --host 0.0.0.0 --port 4200" ,
12
+ "start" : " ng serve --host 0.0.0.0 --port 4200 --no-hmr " ,
13
13
"test" : " ng test"
14
14
},
15
15
"dependencies" : {
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export class AppInitializer {
38
38
const angularLocale = this . convertAbpLocaleToAngularLocale (
39
39
abp . localization . currentLanguage . name
40
40
) ;
41
- import ( `/node_modules/@angular/common/locales/${ angularLocale } .mjs` ) . then (
41
+ import ( `.. /node_modules/@angular/common/locales/${ angularLocale } .mjs` ) . then (
42
42
( module ) => {
43
43
registerLocaleData ( module . default ) ;
44
44
resolve ( result ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
+ "esModuleInterop" : true ,
3
4
"allowSyntheticDefaultImports" : true ,
4
5
"declaration" : false ,
5
6
"downlevelIteration" : true ,
11
12
"moduleResolution" : " node" ,
12
13
"outDir" : " ../dist/out-tsc" ,
13
14
"sourceMap" : true ,
14
- "target" : " es2015" ,
15
+ "target" : " ES2022" ,
16
+ "useDefineForClassFields" : false ,
15
17
"typeRoots" : [
16
18
" ../node_modules/@types"
17
19
],
21
23
"@app/*" : [ " ./app/*" ],
22
24
"@shared/*" : [ " ./shared/*" ],
23
25
"@node_modules/*" : [ " ../node_modules/*" ],
24
- "@angular/*" : [" ../node_modules/@angular/*" ],
25
26
}
26
27
},
27
28
"files" : [
Original file line number Diff line number Diff line change 4
4
To learn more about this file see: https://angular.io/config/solution-tsconfig.
5
5
*/
6
6
{
7
+ "compilerOptions" : {
8
+ "esModuleInterop" : true
9
+ },
7
10
"files" : [],
8
11
"references" : [
9
12
{
You can’t perform that action at this time.
0 commit comments