vite-plugin-vanjs
Version:
A mini meta-framework for VanJS powered by Vite
29 lines (26 loc) • 603 B
TypeScript
export * from "../jsx/types";
export * from "../setup/types";
export * from "../router/types";
export * from "../meta/types";
export * from "../server/types";
export * from "../client/types";
export * from "../parser/types";
declare const VitePluginVanJS: () => {
name: "string";
enforce: "pre" | "post" | undefined;
config(): {
resolve: {
alias: Record<string, string>;
};
esBuild: {
jsx: "string";
jsxImportSource: "string";
};
};
transform(code: string, id?: string): {
code: string;
map: null;
};
};
export default VitePluginVanJS;
export {};