File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
packages/@ngtools/webpack Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ exports = { /* ... */
16
16
rules: [
17
17
{
18
18
test: / (?:\. ngfactory\. js| \. ngstyle\. js| \. ts)$ / ,
19
- loader: ' @ngtools/webpack' ,
20
- sourcemap: true
19
+ loader: ' @ngtools/webpack'
21
20
}
22
21
]
23
22
},
24
23
25
24
plugins: [
26
25
new AngularCompilerPlugin ({
27
26
tsConfigPath: ' path/to/tsconfig.json' ,
28
- entryModule: ' path/to/app.module#AppModule'
27
+ entryModule: ' path/to/app.module#AppModule' ,
28
+ sourceMap: true
29
29
})
30
30
]
31
31
}
@@ -41,16 +41,16 @@ exports = { /* ... */
41
41
rules: [
42
42
{
43
43
test: / \. ts$ / ,
44
- loader: ' @ngtools/webpack' ,
45
- sourcemap: true
44
+ loader: ' @ngtools/webpack'
46
45
}
47
46
]
48
47
},
49
48
50
49
plugins: [
51
50
new AotPlugin ({
52
51
tsConfigPath: ' path/to/tsconfig.json' ,
53
- entryModule: ' path/to/app.module#AppModule'
52
+ entryModule: ' path/to/app.module#AppModule' ,
53
+ sourceMap: true
54
54
})
55
55
]
56
56
}
You can’t perform that action at this time.
0 commit comments