From 379089de9f3e1f75b6d06d8427beb4933e4278ce Mon Sep 17 00:00:00 2001 From: 0t4u <61939142+0t4u@users.noreply.github.com> Date: Sun, 21 Jul 2024 15:43:00 +0800 Subject: [PATCH] fix: undo include env.d.ts in tsconfig (causes astro:* imports to fail) --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 50187c6..1e65c13 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "include": ["./src/*", ".eslintrc.cjs", "./shoukaku/*", "./.astro/*", "env.d.ts"], + "include": ["./src/*", ".eslintrc.cjs", "./shoukaku/*", "./.astro/*"], "extends": "astro/tsconfigs/strict", "compilerOptions": { "verbatimModuleSyntax": false,