From 6b283eb77f43613e586486c059fbd04b5fbb0c2f Mon Sep 17 00:00:00 2001 From: Chris Swithinbank Date: Sat, 7 Jan 2023 17:36:24 +0100 Subject: [PATCH] Add `@version` metadata to config reference types --- packages/astro/src/@types/astro.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 872abeaf8370..57d9804dd974 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -773,6 +773,7 @@ export interface AstroUserConfig { * @name markdown.gfm * @type {boolean} * @default `true` + * @version 2.0.0 * @description * Astro uses [GitHub-flavored Markdown](https://github.com/remarkjs/remark-gfm) by default. To disable this, set the `gfm` flag to `false`: * @@ -790,6 +791,7 @@ export interface AstroUserConfig { * @name markdown.smartypants * @type {boolean} * @default `true` + * @version 2.0.0 * @description * Astro uses the [SmartyPants formatter](https://daringfireball.net/projects/smartypants/) by default. To disable this, set the `smartypants` flag to `false`: *