Update next config file format

This commit is contained in:
Shreerang Kale 2025-07-18 18:58:46 +05:30
parent b8a0d0d06f
commit 054de34b68
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import type { NextConfig } from "next";
/** @type {import('next').NextConfig} */
const nextConfig: NextConfig = {
const nextConfig = {
/* config options here */
typescript: {
// !! WARN !!

View File

@ -22,6 +22,6 @@
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "next.config.mjs"],
"exclude": ["node_modules"]
}