1.1.1 • Published 5 years ago

gatsby-plugin-typescript-checker v1.1.1

Weekly downloads
8,046
License
MIT
Repository
github
Last release
5 years ago

gatsby-plugin-typescript-checker

gatsby-plugin-typescript adds TypeScript transpilation but not type checking. This plug adds fork-ts-checker-webpack-plugin to Gatsby to display type errors in the browser and the command line.

Example

Install

yarn add gatsby-plugin-typescript gatsby-plugin-typescript-checker

gatsby-config.js

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