Skip to main content
Deno 2 is finally here 🎉️
Learn more
Extremely Popular
Go to Latest
interface esbuildTypes.TsconfigRaw
import { type esbuildTypes } from "https://deno.land/x/fresh@1.5.1/src/build/deps.ts";
const { TsconfigRaw } = esbuildTypes;

Properties

optional
compilerOptions: { alwaysStrict?: boolean; baseUrl?: string; experimentalDecorators?: boolean; importsNotUsedAsValues?: "remove" | "preserve" | "error"; jsx?:
| "preserve"
| "react-native"
| "react"
| "react-jsx"
| "react-jsxdev"
; jsxFactory?: string; jsxFragmentFactory?: string; jsxImportSource?: string; paths?: Record<string, string[]>; preserveValueImports?: boolean; strict?: boolean; target?: string; useDefineForClassFields?: boolean; verbatimModuleSyntax?: boolean; }