Skip to main content
Module

x/fathym_common/src/build/DenoConfig.ts>DenoConfig

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
interface DenoConfig
import { type DenoConfig } from "https://deno.land/x/fathym_common@v0.2.147-integration/src/build/DenoConfig.ts";

This is the schema for the Deno configuration file.

Examples

From direct import

import { DenoConfig } from '@fathym/common/build';

const denoConfig: DenoConfig = {
  name: 'My Deno Project',
  version: '1.0.0',
};

Properties

optional
name: string
optional
version: string
optional
imports: Record<string, string>
optional
importMap: string
optional
tasks: Record<string, string>
optional
lint: { rules: { tags?: string[]; }; exclude?: string[]; }
optional
fmt: { exclude?: string[]; }
optional
exclude: string[]
optional
compilerOptions: { jsx?: string; jsxFactory?: string; jsxFragmentFactory?: string; jsxImportSource?: string; }