Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GlobalPassOption

Options for inline-global pass.

interface GlobalPassOption {
envs?: string[];
vars?: {
[key: string]: string;
}
;
}

§Properties

§
envs?: string[]
[src]

Name of environment variables to inline.

Defaults to ["NODE_ENV", "SWC_ENV"]

§
vars?: {
[key: string]: string;
}
[src]

Global variables.

e.g. { __DEBUG__: true }