Is there a way to ignore a module from being bundled?
🔦 Context
I am making a VSCode extension which imports the vscode module. This module is created on-the-fly by VSCode and isn't a real module, so an error is occurs when Parcel tries to bundle it.
Currently, I'm using Webpack externals to ignore it:
❔ Question
Is there a way to ignore a module from being bundled?
🔦 Context
I am making a VSCode extension which imports the
vscode
module. This module is created on-the-fly by VSCode and isn't a real module, so an error is occurs when Parcel tries to bundle it.Currently, I'm using Webpack
externals
to ignore it:💻 Code Sample
Repository: https://github.com/arnohovhannisyan/vscode-syncify
🌍 Your Environment