Skip to main content
Go to Latest
type alias TransformOptions
import { type TransformOptions } from "https://deno.land/x/aleph_compiler@0.7.4/types.ts";
definition: { lang?:
| "ts"
| "tsx"
| "js"
| "jsx"
; alephPkgUri?: string; importMap?: string; globalVersion?: string; graphVersions?: Record<string, string>; isDev?: boolean; sourceMap?: boolean; jsxPragma?: string; jsxPragmaFrag?: string; jsxImportSource?: string; reactRefresh?: boolean; stripDataExport?: boolean; minify?: { compress: boolean; }; target?:
| "es2015"
| "es2016"
| "es2017"
| "es2018"
| "es2019"
| "es2020"
| "es2021"
| "es2022"
; }