UNPKG

@sssx/config

Version:

Configuration parser for SSSX

38 lines 1.11 kB
import type { Config as C } from './types.js'; export declare type Config = C; /** * Configuration for existing environment parsed from `sssx.config.js` */ export declare const config: C; /** * Folder where SSSX stores related files * @default `./.sssx` */ export declare const PREFIX: string; /** * Folder where exported HTML, CSS, JS and any other files are stored * @default `./dist` */ export declare const OUTDIR: string; /** * Folder where we store one text file per route, and it includes all paths for the given route. */ export declare const GENERATED_ROUTES: string; /** * Folder where we store client generated javascript code (svelte + typescript sources) */ export declare const COMPILED: string; /** * Folder where we store server generated javascript code (svelte + typescript sources) */ export declare const SSR: string; /** * Absolute path for @config.appDir * @default './dist/__SSSX__' */ export declare const OUTDIR_SSSX: string; /** * Root dir is used for referencing inside generated HTML */ export declare const ROOT_DIR: string; //# sourceMappingURL=index.d.ts.map