Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/xdg_app_paths/src/mod.deno.ts>Options

Determine (XDG-compatible) paths for storing application files (cache, config, data, etc)
Latest
interface Options
Re-export
import { type Options } from "https://deno.land/x/xdg_app_paths@v8.3.0/src/mod.deno.ts";

Configuration options supplied when constructing XDGAppPaths

Properties

readonly
optional
name: string | null

Name of the application; used to generate isolated application paths. > When missing (undefined), null, or empty (''), it is generated automatically from the process main file name, where determinable. > "$eval" is used as a final fallback value when the application name cannot otherwise be determined.

readonly
optional
suffix: string | null

Suffix which is appended to the application name when generating the application paths.

readonly
optional
isolated: boolean | null

Default isolation flag (used when no isolation flag is supplied for DirOptions).