9 lines
229 B
JavaScript
Executable File
9 lines
229 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
// @ts-nocheck
|
|
|
|
// Stash the base directory into a global variable.
|
|
global.__rootDirectory = __dirname + '/dist/';
|
|
|
|
require('./dist/pyright-langserver');
|