JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8346
  • Score
    100M100P100Q148891F
  • License MIT

Debugger for vite-plugin-entry-shaking

Package Exports

  • vite-plugin-entry-shaking-debugger

Readme

Debugger for vite-plugin-entry-shaking

Install

# Using npm
npm i -D vite-plugin-entry-shaking-debugger
# Using Yarn
yarn add -D vite-plugin-entry-shaking-debugger
# Using pnpm
pnpm add -D vite-plugin-entry-shaking-debugger

Usage

Turn it on by setting debug to true in vite.config.js:

export default defineConfig({
  plugins: [
    EntryShakingPlugin({
      targets: ['…'],
      debug: true,
    }),
  ],
});