We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e36c7e3 commit 6916bc9Copy full SHA for 6916bc9
packages/angular_devkit/build_angular/src/babel/webpack-loader.ts
@@ -106,7 +106,8 @@ export default custom<AngularCustomOptions>(() => {
106
...configuration.options,
107
// Workaround for https://github.com/babel/babel-loader/pull/896 is available
108
// Delete once the above PR is released
109
- inputSourceMap: (configuration.options.inputSourceMap || false as {}), // Typings are not correct
+ // tslint:disable-next-line: no-any
110
+ inputSourceMap: (configuration.options.inputSourceMap || false as any), // Typings are not correct
111
presets: [
112
...(configuration.options.presets || []),
113
[
0 commit comments