Skip to content

Import sorting is incorrect in vs code using typescript paths #3

@threaddot

Description

@threaddot

When a new class is auto import vs code will add a project alias to the top of the list:

import { DrawSeriesProps } from '@/series/Series.types';
import { Canvas } from 'canvaskit-wasm';

But it needs add it to the bottom:

import { Canvas } from 'canvaskit-wasm';
import { DrawSeriesProps } from '@/series/Series.types';

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

Status

Todo

Relationships

None yet

Development

No branches or pull requests

Issue actions