From e6afb9410f1a7b9bd687a4debdda3c3861ad752d Mon Sep 17 00:00:00 2001 From: Tim Ittermann Date: Tue, 23 Jul 2024 18:03:13 +0200 Subject: [PATCH] Apply next suggestions --- tsconfig.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7e2dc16..3a0a218 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,7 +23,12 @@ "@/*": [ "./src/*" ] - } + }, + "plugins": [ + { + "name": "next" + } + ] }, "include": [ "next-env.d.ts", @@ -31,9 +36,10 @@ "**/*.tsx", "**/*.cjs", "**/*.mjs", - "next-i18next.config.js" + "next-i18next.config.js", + ".next/types/**/*.ts" ], "exclude": [ "node_modules" ] -} \ No newline at end of file +}