@tevm/ts-plugin
v1.0.0-next.148
Published
A typescript plugin for tevm
Maintainers
Readme
@tevm/ts-plugin
A typescript plugin for adding typescript support and autocomplete to your .sol file imports.

Installation
npm i @tevm/rollup-plugin @tevm/ts-pluginConfiguration
- Add @tevm/ts-plugin to your
pluginsarray incompilerOptions - if
foundry.tomlconfig is not in the same directory as the ts-config pass in a relative path to the the project root asprojectconfig option
{
"compilerOptions": {
"plugins": [
{
"name": "@tevm/ts-plugin",
"project": "../"
}
]
}
}