1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub fn generate() -> String { r#"import { defineConfig } from 'rolldown' export default defineConfig({ input: 'src/component.ts', external: /wasi:.*/, output: { file: 'dist/component.js', format: 'esm', }, }) "# .to_string() }