File tree Expand file tree Collapse file tree 4 files changed +592
-1058
lines changed Expand file tree Collapse file tree 4 files changed +592
-1058
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import { PrefsModule } from './prefs/prefs.module';
12
12
export const contactsFutureState : NgHybridStateDeclaration = {
13
13
name : 'contacts.**' ,
14
14
url : '/contacts' ,
15
- loadChildren : './contacts/contacts.module#ContactsModule' ,
15
+ loadChildren : ( ) => import ( './contacts/contacts.module' ) . then ( m => m . ContactsModule ) ,
16
16
} ;
17
17
18
18
export function getDialogService ( $injector ) {
Original file line number Diff line number Diff line change 28
28
"@angular/compiler-cli" : " ^8.0.2" ,
29
29
"@angular/core" : " ^8.0.2" ,
30
30
"@angular/forms" : " ^8.0.2" ,
31
- "@angular/http" : " ^7.2.4" ,
32
31
"@angular/platform-browser" : " ^8.0.2" ,
33
32
"@angular/platform-browser-dynamic" : " ^8.0.2" ,
34
33
"@angular/router" : " ^8.0.2" ,
39
38
"rxjs" : " ^6.5.2" ,
40
39
"rxjs-compat" : " ^6.5.2" ,
41
40
"tslib" : " ^1.10.0" ,
42
- "zone.js" : " ^ 0.9.1"
41
+ "zone.js" : " ~ 0.9.1"
43
42
},
44
43
"devDependencies" : {
45
- "@angular-devkit/build-angular" : " ~0.13.9 " ,
46
- "@angular/cli" : " ^7.3.9 " ,
44
+ "@angular-devkit/build-angular" : " ~0.800.0 " ,
45
+ "@angular/cli" : " ^8.0.4 " ,
47
46
"@ngtools/webpack" : " ^8.0.4" ,
48
47
"@types/angular" : " ^1.6.54" ,
49
48
"@uirouter/cypress-runner" : " ^1.0.10" ,
49
+ "codelyzer" : " ^5.0.1" ,
50
50
"shx" : " ^0.3.2" ,
51
51
"source-map-loader" : " ^0.2.4" ,
52
52
"typescript" : " 3.4.5" ,
Original file line number Diff line number Diff line change 4
4
" app/contacts/contacts.module.ts"
5
5
],
6
6
"compilerOptions" : {
7
+ "downlevelIteration" : true ,
7
8
"emitDecoratorMetadata" : true ,
8
9
"experimentalDecorators" : true ,
9
10
"importHelpers" : true ,
10
- "module" : " commonjs " ,
11
+ "module" : " esnext " ,
11
12
"moduleResolution" : " node" ,
12
- "target" : " es5 " ,
13
+ "target" : " es2015 " ,
13
14
"outDir" : " transpiled/app" ,
14
15
"declaration" : false ,
15
16
"sourceMap" : true ,
You can’t perform that action at this time.
0 commit comments