From 04d3208dbb28a7747bf6485474cf594ad97673e6 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Tue, 14 Jan 2025 18:26:29 -0800 Subject: [PATCH] Updated tsconfig.json --- tsconfig.json | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 923fcf396..007388548 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,19 +2,37 @@ "compilerOptions": { "target": "es2020", "module": "commonjs", - "lib": ["es2020", "dom"], + "lib": [ + "es2020", + "dom" + ], "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "baseUrl": ".", "paths": { - "@/*": ["./*"] - } + "@/*": [ + "./*" + ] + }, + "allowJs": true, + "noEmit": true, + "incremental": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "plugins": [ + { + "name": "next" + } + ] }, "include": [ "**/*.ts", - "**/*.tsx" + "**/*.tsx", + ".next/types/**/*.ts" ], "exclude": [ "node_modules"