File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,10 @@ const items: QuickPickItem[] = pm.map((item) => {
1616 }
1717} )
1818
19- interface Dependency {
20- name : string ;
21- version : string ;
22- }
19+ interface Dependency { name : string ; version : string ; }
2320
2421export const getProjectDependencies = async ( ) : Promise < Dependency [ ] > => {
25- const dependencies : { name : string ; version : string } [ ] = [ ] ;
22+ const dependencies : Dependency [ ] = [ ] ;
2623
2724 let packageJsonPath = `${ projectRootDirectory ( ) } /package.json`
2825
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { join } from 'path';
44import { parseModule } from 'magicast' ;
55import { readTSConfig } from 'pkg-types'
66import { projectRootDirectory , projectSrcDirectory } from '.' ;
7- import * as vscode from 'vscode' ;
87type TsconfigPaths = Record < string , string [ ] > ;
98
109
You can’t perform that action at this time.
0 commit comments