Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-ts-checker

Add typescript type checking to Gatsby.

Install

Use npm, yarn, or whatever node package manager is hot right now.

// gatsby-config.js
module.exports = {
  plugins: [
    'gatsby-plugin-typescript',
    'gatsby-plugin-ts-checker',
  ]
}

Options

Since this is just a wrapper for Fork TS Checker Webpack Plugin, you can pass their options like so:

// gatsby-config.js
module.exports = {
  plugins: [
    'gatsby-plugin-typescript',
    {
      options: {
        typescript: {
          memoryLimit: 4096,
          mode: 'write-tsbuildinfo',
        },
      },
      resolve: 'gatsby-plugin-ts-checker',
    }
  ]
}
© 2023 Gatsby, Inc.