Skip to content

@bem-react/[email protected]

Compare
Choose a tag to compare
@yarastqt yarastqt released this 23 Oct 12:59
· 85 commits to master since this release

Features

  • add hook for create sideEffects (b510cfe)

example

useTypeScriptPlugin({
  configPath: './tsconfig.prod.json',
  onCreateSideEffects(path) {
    if (path.includes('pointerfocus/index.js')) {
      return ['*.js']
    }
  },
})