1 min read

NEXTJS_MISSING_NEXT13_TYPESCRIPT_PLUGIN

Applications using Next 13 should use the "next" TypeScript plugin.
Table of Contents

Conformance is available on Enterprise plans

Next 13 introduced a TypeScript plugin to provide richer information for Next.js applications using TypeScript. See the Next.js docs for more information.

Add the following to plugins in the compilerOptions of your tsconfig.json file.

tsconfig.json
  "compilerOptions": {
    "plugins": [{ "name": "next" }]
  }
Last updated on May 18, 2024