gatsby typescript code example
Example 1: how to install gatsby with typescript
npm install gatsby-plugin-typescript & npm install typescript --save-dev
yarn add gatsby-plugin-typescript & yarn add typescript --dev
module.exports = {
plugins: [
`gatsby-plugin-typescript`,
],
}
Example 2: install typescript in gatsby
yarn add gatsby-plugin-typescript
yarn add typescript --dev
npm i gatsby-plugin-typescript
npm i typescript --save-dev
Example 3: gatsby typescript template
gatsby new gatsby-starter-typescript https://github.com/haysclark/gatsby-starter-typescriptCopyInstall command: copy code to clipboard