Skip to main content
Module

x/aleph/server/deps.ts>TransformOptions

The Full-stack Framework in Deno.
Very Popular
Go to Latest
type alias TransformOptions
Re-export
import { type TransformOptions } from "https://deno.land/x/aleph@1.0.0-beta.1/server/deps.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"
; }