[TS][Optimise Imports]Group imports by "import" and "import type"

Hi,

 

As of TS 3.8 it is now possible to do type-only imports . It would be nice if the imports sorting algorithm had an option to "Group import type" declarations. So you could have 

 

import ....

import ....

import ....

import type ....

import type ....

import type ....

 

Current behaviour mixes "import" and "import type" together

0

请先登录再写评论。