如何使用源映射调试本地 NPM 依赖项(使用 `npm link`)?
How to debug local NPM dependency (using `npm link`) with source-maps?
我正在使用 babel-cli 来编译我本地的 NPM 依赖源代码。
package.json:
"main": "lib/index.js",
"scripts": {
"dev": "babel src --watch -d lib --source-maps inline",
},
我的其他应用程序引用了本地 NPM 依赖项。现在我需要 npm link
来调试本地 NPM 依赖项。如何使用源映射进行调试?
你可以尝试 source-map-loader 和 webpack
https://github.com/webpack-contrib/source-map-loader
我正在使用 babel-cli 来编译我本地的 NPM 依赖源代码。
package.json:
"main": "lib/index.js",
"scripts": {
"dev": "babel src --watch -d lib --source-maps inline",
},
我的其他应用程序引用了本地 NPM 依赖项。现在我需要 npm link
来调试本地 NPM 依赖项。如何使用源映射进行调试?
你可以尝试 source-map-loader 和 webpack https://github.com/webpack-contrib/source-map-loader