How to use the @webpack-blocks/webpack.sourceMaps function in @webpack-blocks/webpack

To help you get started, we’ve selected a few @webpack-blocks/webpack examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github cyclejs-community / one-fits-all / configs / webpack.config.js View on Github external
include: packageJson.nyc.include.map(p =>
                                path.resolve(appPath(p))
                            ),
                            use: {
                                loader: 'istanbul-instrumenter-loader-fix',
                                options: {
                                    esModules: true,
                                    fixWebpackSourcePaths: true
                                }
                            },
                            enforce: 'post'
                        }
                    ]
                }
            }),
            sourceMaps('inline-cheap-module-source-map')
        ])
    ])
);