Skip to content

Commit 6916bc9

Browse files
alan-agius4clydin
authored andcommitted
build: update @types/babel__core to version 7.1.14
1 parent e36c7e3 commit 6916bc9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/angular_devkit/build_angular/src/babel/webpack-loader.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ export default custom<AngularCustomOptions>(() => {
106106
...configuration.options,
107107
// Workaround for https://github.com/babel/babel-loader/pull/896 is available
108108
// Delete once the above PR is released
109-
inputSourceMap: (configuration.options.inputSourceMap || false as {}), // Typings are not correct
109+
// tslint:disable-next-line: no-any
110+
inputSourceMap: (configuration.options.inputSourceMap || false as any), // Typings are not correct
110111
presets: [
111112
...(configuration.options.presets || []),
112113
[

0 commit comments

Comments
 (0)