I want to import type from type.d.ts file
import type { StateDefinition } from '../type'
vite cannot find file and throw error
So I should add extention .d.ts
import type { StateDefinition } from '../type.d.ts'
but I will get ts error in vscode
anyone can tell me how to fix it?