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

PluginOptions

For other modules to aggregate the options

interface PluginOptions {
configDeps?: string[];
configFile?: string | false;
exclude?: FilterPattern;
include?: FilterPattern;
transformers?: SourceCodeTransformer[];
}

§Properties

§
configDeps?: string[]
[src]

List of files that will also trigger config reloads

§
configFile?: string | false
[src]

Load from configs files

set false to disable

§

Patterns that filter the files NOT being extracted.

§

Patterns that filter the files being extracted.

§

Custom transformers to the source code