variable DEFAULT_CONFIG

Default configuration - UPDATED with safer patterns

Provides sensible defaults for all configuration options. Users can override any of these values in their nagare.config.ts file.

Examples

Example 1

const config = {
  ...DEFAULT_CONFIG,
  project: { name: "My App", repository: "..." },
  // ... user overrides
};

Type

Partial<NagareConfig>

Usage

import { DEFAULT_CONFIG } from ".";