From 9ca7c070c457a5beb8a046d26be0d68180f49fe5 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 1 Nov 2024 08:28:10 +0530 Subject: [PATCH] chore: include vite-env.d.ts --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9afe3587..cbbbc744 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,13 +9,14 @@ "strict": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, - "module": "commonjs", + "module": "esnext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", + "types": ["vite/client"], "outDir": "./build" }, - "include": ["src"] + "include": ["src", "vite-env.d.ts"] }