@velcro/plugin-sucrase
Version:
A sucrase plugin for Velcro that adds support for Typescript, jsx, ES Modules and more
8 lines • 396 B
TypeScript
import { Plugin } from "@velcro/bundler";
import { Options } from "sucrase";
declare const version = "__VERSION__";
interface SucrasePluginOptions extends Partial<Pick<Options, "jsxFragmentPragma" | "jsxPragma" | "transforms">> {
}
declare function sucrasePlugin(options?: SucrasePluginOptions): Plugin;
export { version, SucrasePluginOptions, sucrasePlugin };
//# sourceMappingURL=index.d.ts.map