Skip to content

Instantly share code, notes, and snippets.

@noyobo
Created December 14, 2021 12:27
Show Gist options
  • Save noyobo/33bbc3ba646f4e06a1e6d7ea638d2b2b to your computer and use it in GitHub Desktop.
Save noyobo/33bbc3ba646f4e06a1e6d7ea638d2b2b to your computer and use it in GitHub Desktop.
let makeAllPackagesExternalPlugin = {
name: 'make-all-packages-external',
setup(build) {
let filter = /^[^.\/]|^\.[^.\/]|^\.\.[^\/]/ // Must not start with "/" or "./" or "../"
build.onResolve({ filter }, args => ({ path: args.path, external: true }))
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment