Skip to content
This repository was archived by the owner on Mar 16, 2020. It is now read-only.
This repository was archived by the owner on Mar 16, 2020. It is now read-only.

source maps issue #23

@pavel06081991

Description

@pavel06081991

I used devtool: 'source-map' in webpack config and did not use babili-webpack-plugin.
Here are some code of my source file:

var b = 1024;

console.log(10)

All worked great, I could set breakpoint to line:
var b = 1024;
and to line
console.log(10)
Also I could see the value of "b" variable during debugging.

But after I added babili-webpack-plugin I can not see the value of "b" variable. Also now I can set breakpoint only to line:
console.log(10)
and can not set breakpoint to line:
var b = 1024;

Is it an issue or maybe I do something wrong? Here is part of my webpack.config.js

const config = {
    devtool: 'source-map',
    plugins: [
        new BabiliPlugin({}, {
            comments: false
        })
    ]
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions