Allow to run css language server headless

This commit is contained in:
Martin Aeschlimann
2020-05-22 17:08:16 +02:00
parent 452dc54c78
commit 2e5b0824d1
22 changed files with 1100 additions and 721 deletions

View File

@@ -13,10 +13,10 @@ const path = require('path');
module.exports = withDefaults({
context: path.join(__dirname, 'client'),
entry: {
extension: './src/cssMain.ts',
extension: './src/node/cssClientMain.ts',
},
output: {
filename: 'cssMain.js',
path: path.join(__dirname, 'client', 'dist')
filename: 'cssClientMain.js',
path: path.join(__dirname, 'client', 'dist', 'node')
}
});