Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno_tag/code.ts>DenoTagOptions

A cli command that allows you to write `<deno>` tags in your html files.
Latest
interface DenoTagOptions
import { type DenoTagOptions } from "https://deno.land/x/deno_tag@v1.1.0/code.ts";

Optionally the denoTag() function can be IO free, all IO is optional and can be set through its second argument, which expects an object of this type.

The defaults are:

  • bundler: Deno.bundle
  • runner: Deno.run

Bundler is called when a <deno bundle="code.ts"> is found. Runner is called when a <deno run="code.ts"> is found.

Properties

optional
bundler: defaultBundler
optional
bundleOptions: Deno.EmitOptions
optional
runner: Deno.run
optional
runOptions: Deno.RunOptions