Fix entry point

This commit is contained in:
Kolja Lampe
2019-01-27 15:06:40 +01:00
parent eaf71adc33
commit 361a813825
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ It also includes an End-to-End test.
├── package.json // The extension manifest.
└── server // Language Server
└── src
└── server.ts // Language Server entry point
└── index.ts // Language Server entry point
```
## Running the Sample

View File

@@ -34,7 +34,7 @@ function startClient(dir: string, context: ExtensionContext) {
}
let serverModule = context.asAbsolutePath(
path.join('server', 'out', 'server.js')
path.join('server', 'out', 'index.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