gatsby-typescript
gatsby-typescript copied to clipboard
Alternative typescript support plugin for Gatsbyjs. Aims to make using typescript in Gatsby as painless as possible
Hello there. I couldn't find in the docs some place where we can ignore some files, is that currently possible somehow? I have `.test.ts` files inside `src` (nearby its definition)...
Maybe that is because my site uses a lot of plugins, but the default option causes the dev server to freeze a few seconds every time I do an edit....
The order of some properties does seem indeterministic. I decided to track the file in Git, as I have a Git Hook in place to build all TypeScript which relies...
It worked once, then decided to quit on me. I'm using `gatsby-plugin-graphql-codegen` with the default config, not `gatsby-plugin-ts`. It's very possible I've just done something wrong; I'm new to gatsby...
Do I have for that plugin to work properly to install TS locally in project DIR? Here is the error I am getting while having TS globally: ``` ERROR #11321...
Hello! Using the `gatsby-plugin-graphql-codegen` plugin, is it possible to create separate files for types and queries? Let's say I'd like all the types to be in a *graphql-types.ts* and *graphql-queries.ts*....
I'm suddenly getting a whole bunch of errors when trying to start my project. ``` ERROR #98123 WEBPACK Generating SSR bundle failed ERROR in D:/Projects/project/graphql-types.ts(4312,13): 4312:13 Duplicate identifier 'PagesQueryQueryVariables'. ERROR...
This way user can just import the file directly ```js import { MyQuery } from 'gatsby-ts' ``` Instead of the `../../..` they're doing now. Also avoid the confusion shown in...
When working on files while `gatsby develop` is running, sometimes a change causes the plugin to regenerate the output and it does almost seem like it nukes the file, before...
When users install the plugin to their site, they'll met with 10s of dependencies warnings for graphql. We have to use Gatsby's own graphql (gatsby/graphql). I'm not sure how to...