function transformimport { transform } from "https://dotland.deno.dev/x/aleph@v0.3.0-alpha.33/compiler/mod.ts"; transform(url: string,code: string,options?: TransformOptions,): Promise<TransformResult>transform module by swc. transform( '/app.tsx', ` export default App() { return <h1>Hello World</h1> } `, { url: '/app.tsx' swcOptions: { target: 'es2020' } } ) Parametersurl: string the module URL. code: string the mocule code. optionaloptions: TransformOptions = [UNSUPPORTED] the transform options. ReturnsPromise<TransformResult>