function transformimport { transform } from "https://dotland.deno.dev/x/aleph@1.0.0-alpha.15/compiler/mod.ts"; transform(specifier: string,code: string,options?: TransformOptions,): Promise<TransformResult>Transforms the module with esbuild/swc. transform( '/app.tsx', ` import React from 'https://esm.sh/react'; export default App() { return <h1>Hello world!</h1> } ` ) Parametersspecifier: stringcode: stringoptionaloptions: TransformOptions = [UNSUPPORTED]ReturnsPromise<TransformResult>