@tsconfig/next

2.0.3 • Public • Published

A base TSConfig for working with Next.js.

Add the package to your "devDependencies":

npm install --save-dev @tsconfig/next
yarn add --dev @tsconfig/next

Add to your tsconfig.json:

"extends": "@tsconfig/next/tsconfig.json"

The tsconfig.json:

{
  "$schema": "https://json.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.

Readme

Keywords

Package Sidebar

Install

npm i @tsconfig/next

Weekly Downloads

20,266

Version

2.0.3

License

MIT

Unpacked Size

2.98 kB

Total Files

4

Last publish

Collaborators

  • orta
  • typescript-deploys