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

Configuration

type Configuration = {
namespace: string | AppInfo;
debug?: boolean;
debugging?: {
injectIntoGlobalContext?: boolean;
}
;
fileSystem?: {
loadImmediately?: boolean;
version?: string;
}
;
permissions?: Permissions;
userMessages?: UserMessages;
}
;

§Type

§
{
namespace: string | AppInfo;
debug?: boolean;
debugging?: {
injectIntoGlobalContext?: boolean;
}
;
fileSystem?: {
loadImmediately?: boolean;
version?: string;
}
;
permissions?: Permissions;
userMessages?: UserMessages;
}
[src]