You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 4, 2021. It is now read-only.
I would like to use your plugin with Typescript 1.8.x, so I tried
import typescript from 'rollup-plugin-typescript';
import * as ts from 'typescript';
export default {
...
plugins: [
typescript( {
target: ts.ScriptTarget.ES6,
typescript: ts
} )
]
}
Unfortunately, there is a change in the API that is not compatible with your current code, as the host is getting passed as the third parameter instead of the fourth.
What would be the best way to fix this?!
I can submit a PR, if you like... but wanted to discuss the best way before.