Package Exports
- @tevm/esbuild-plugin
- @tevm/esbuild-plugin/package.json
Readme
@tevm/plugin
A webpack plugin for importing solidity files.
Installation
pnpm i @tevm/webpack-pluginUsage
Install webpack plugin
npm i @tevm/webpack-pluginAdd to your webpack config
import {ForgePlugin} from '@tevm/webpack-plugin'
export default {
// ... other configuration settings
plugins: [
// ... other plugins
new ForgePlugin({
project: './contracts'
}),
],
};