@@ -22,7 +22,7 @@ import type {ParsedSvelteConfig} from './svelte_config.ts';
2222import type { FilerOptions } from './filer.ts' ;
2323
2424/**
25- * BLAKE3 hash of empty string, used for configs without build_cache_config.
25+ * BLAKE3 hash of empty string, used for configs without ` build_cache_config` .
2626 * This ensures consistent cache behavior when no custom config is provided.
2727 */
2828export const EMPTY_BUILD_CACHE_CONFIG_HASH =
@@ -62,18 +62,18 @@ export interface GroConfig extends RawGroConfig {
6262 * The CLI to use that's compatible with `npm install` and `npm link`. Defaults to `'npm'`.
6363 */
6464 pm_cli : string ;
65- /** @default SVELTE_CONFIG_FILENAME */
65+ /** @default ` SVELTE_CONFIG_FILENAME` */
6666 svelte_config_filename ?: string ;
6767 /**
6868 * SHA-256 hash of the user's `build_cache_config` from `gro.config.ts`.
6969 * This is computed during config normalization and the raw value is immediately deleted.
7070 * If no `build_cache_config` was provided, this is the hash of an empty string.
71- * @see RawGroConfig.build_cache_config
71+ * @see ` RawGroConfig.build_cache_config`
7272 */
7373 build_cache_config_hash : string ;
7474 /**
7575 * Options passed to the `Filer` for file watching and import resolution.
76- * @see FilerOptions
76+ * @see ` FilerOptions`
7777 */
7878 filer_options : Partial < FilerOptions > | null ;
7979}
@@ -110,7 +110,7 @@ export interface RawGroConfig {
110110 | ( ( ) => Record < string , unknown > | Promise < Record < string , unknown > > ) ;
111111 /**
112112 * Options passed to the `Filer` for file watching and import resolution.
113- * @see FilerOptions
113+ * @see ` FilerOptions`
114114 */
115115 filer_options ?: Partial < FilerOptions > | null ;
116116}
0 commit comments