[eslint] add ignores for generated files

This commit is contained in:
2021-04-18 00:49:55 +05:30
parent bef076239e
commit 61d30947ce
12 changed files with 8229 additions and 152 deletions

View File

@@ -19,7 +19,7 @@ let client: LanguageClient;
export function activate(context: ExtensionContext) {
// The server is implemented in node
let serverModule = context.asAbsolutePath(
path.join('server', 'out', 'server.js')
path.join('server', 'dist', 'server.js')
);
// The debug options for the server
// --inspect=6009: runs the server in Node's Inspector mode so VS Code can attach to the server for debugging