A base TSConfig for working with Next.js.
npm install @tsconfig/nextAdd the package to your "devDependencies":
``sh`
npm install --save-dev @tsconfig/next
yarn add --dev @tsconfig/next
Add to your tsconfig.json:
`json`
"extends": "@tsconfig/next/tsconfig.json"
---
The tsconfig.json:
`jsonc
{
"$schema": "https://www.schemastore.org/tsconfig",
"_version": "2.0.0",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "/.ts", "/.tsx", ".next/types/*/.ts"],
"exclude": ["node_modules"]
}
``
You can find the code here.