mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-22 03:09:13 +00:00
* Scaffold out basic markdown lsp This scaffolds out a new markdown language server and then uses it to implement document symbols. After the change, the markdown extension will have the following structure: - languageService — Where all the LSP language stuff will eventually land - server — The actual language server. Consumes ` languageService` - src — The current extension that launches the server and implements VS Code specific functions * Adding build scripts * a * Use language service from github * Remove ls build scripts * Bump versions * Only build ext * Enable for web * Fixing for browser
23 lines
673 B
JavaScript
23 lines
673 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
//@ts-check
|
|
|
|
'use strict';
|
|
|
|
const withDefaults = require('../../shared.webpack.config');
|
|
const path = require('path');
|
|
|
|
module.exports = withDefaults({
|
|
context: path.join(__dirname),
|
|
entry: {
|
|
extension: './src/node/main.ts',
|
|
},
|
|
output: {
|
|
filename: 'main.js',
|
|
path: path.join(__dirname, 'dist', 'node'),
|
|
}
|
|
});
|