From c05a163a1a8f8083b30141a0b6a8244430a5bdd4 Mon Sep 17 00:00:00 2001 From: karooolis Date: Tue, 27 Aug 2024 19:14:12 +0300 Subject: [PATCH] undo tsconfig change --- docs/tsconfig.json | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/docs/tsconfig.json b/docs/tsconfig.json index f76a448018..3ed73a5c34 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "es2020", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": false, @@ -14,7 +10,7 @@ "incremental": true, "esModuleInterop": true, "module": "esnext", - "moduleResolution": "node", + "moduleResolution": "Bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", @@ -25,14 +21,6 @@ ], "strictNullChecks": true }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - "pages/_meta.js", - ".next/types/**/*.ts" - ], - "exclude": [ - "node_modules" - ] + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "pages/_meta.js", ".next/types/**/*.ts"], + "exclude": ["node_modules"] }