Import using type specifier
Open
shared with relay team
- Dominant language
- Rust
- Stars
- 19k
- Forks
- 1.9k
- PR merge metrics
- No merged PRs in 30d
Description
Our TypeScript is failing because Relay is attempting to import types without a type specifier, i.e.
```ts
import { FragmentRefs } from "relay-runtime";
```
This should be:
```ts
import { type FragmentRefs } from "relay-runtime";
```
There should be either the default or there needs to be an option for this in the relay compiler
Contributor guide
Assessment
This issue has not been assessed yet.