Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.63.0
- OS Version: Windows 10
Steps to Reproduce:
- Add
"importsNotUsedAsValues": "error" to compilerOptions in tsconfig
- import a type into a ts file:
import { type ReactNode } from 'react';
This throws an error: This import is never used as a value and must use 'import type' because 'importsNotUsedAsValues' is set to 'error'.