From bad347d4f84918deda9c8dfe946e73434384841f Mon Sep 17 00:00:00 2001 From: vladokuskov Date: Fri, 7 Jun 2024 22:06:38 +0300 Subject: [PATCH] MIGRATION - reverted ts config --- tsconfig.json | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 171bbc9..921ab92 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,10 @@ { "compilerOptions": { - "lib": ["dom", "dom.iterable", "esnext"], + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], "target": "ES6", "allowJs": true, "skipLibCheck": true, @@ -14,9 +18,21 @@ "jsx": "preserve", "incremental": true, "paths": { - "@/*": ["./*"] - } + "@/*": [ + "./*" + ] + }, + "plugins": [ + { + "name": "next" + } + ] }, - "include": ["**/*.ts", "**/*.vue",], - "exclude": ["node_modules"] + "include": [ + "**/*.ts", + ".next/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ] }