You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a case where I want to use Pastel together with a GraphQL client that I have.
But right now it fails it to properly import (types are not resolved) because the generated index.d.ts imports from './schema' instead of './schema.js':
import{FieldsSelection,GraphqlOperation,ClientOptions,ClientRequestConfig,Observable,}from'@gqlts/runtime'import{ClientasWSClient}from'graphql-ws'import{AxiosInstance}from'axios'export*from'./schema'// should be `schema.js`
Would be nice to either respect the current tsconfig file or to be able to pass it in the library like this:
Hi,
I have a case where I want to use Pastel together with a GraphQL client that I have.
But right now it fails it to properly import (types are not resolved) because the generated
index.d.ts
imports from'./schema'
instead of'./schema.js'
:Would be nice to either respect the current tsconfig file or to be able to pass it in the library like this:
my tsconfig:
The text was updated successfully, but these errors were encountered: