From 590d941c5119212765bca69e498a6a2705ea2991 Mon Sep 17 00:00:00 2001 From: Bryce Russell Date: Mon, 9 Dec 2024 18:53:11 -0600 Subject: [PATCH] Add recommended type options to tsconfig https://docs.astro.build/en/guides/upgrade-to/v5/#changed-typescript-configuration --- playground/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/playground/tsconfig.json b/playground/tsconfig.json index 12984ea..9a67353 100644 --- a/playground/tsconfig.json +++ b/playground/tsconfig.json @@ -1,3 +1,5 @@ { - "extends": "astro/tsconfigs/strictest" + "extends": "astro/tsconfigs/strictest", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"] }