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';
When a new class is auto import vs code will add a project alias to the top of the list:
But it needs add it to the bottom: