Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(@angular-devkit/build-angular): fix sourcemaps paths
`output.devtoolModuleFilenameTemplate` is not used when `SourceMapDevToolPlugin` https://github.com/webpack/webpack/blob/671cb184e34e748e7c3e1d724ee24263c18c19e9/lib/SourceMapDevToolPlugin.js#L77 Current stacktraces are not properly formatted ``` http://localhost:9876/_karma_webpack_/webpack:/src/app/dummy.component.spec.ts:36:76 ``` With this change we wil change this to ``` http://localhost:9876/src/app/validation-directive.ts:13:23 ``` This also allows users to click on the stacktrace in the browser and go to source.
- Loading branch information