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" + ] }