NEXTJS_MISSING_NEXT13_TYPESCRIPT_PLUGIN

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 March 4, 2025