Skip to content

Commit

Permalink
Linting fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
aakash-a-dev committed Nov 19, 2024
1 parent 361d230 commit 9241fa8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/api/tsserver/tsservers.mts
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ export class TsServers {
options.cwd,
'node_modules',
'bin',
process.platform === 'win32' ? 'tsserver.cmd' : 'tsserver'
)
process.platform === 'win32' ? 'tsserver.cmd' : 'tsserver',
);

const child = spawn(tsserverPath, [], {
cwd: options.cwd,
shell: true
shell: true,
});

const server = new TsServer(child);
Expand Down

0 comments on commit 9241fa8

Please sign in to comment.