A typescript plugin for tevm
npm install @tevm/ts-pluginA typescript plugin for adding typescript support and autocomplete to your .sol file imports.
#### Installation
``bash [npm]`
npm i @tevm/rollup-plugin @tevm/ts-plugin
- Add @tevm/ts-plugin to your plugins array in compilerOptionsfoundry.toml
- if config is not in the same directory as the ts-config pass in a relative path to the the project root as project config option
`json``
{
"compilerOptions": {
"plugins": [
{
"name": "@tevm/ts-plugin",
"project": "../"
}
]
}
}