GitHub Toggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto mode Back to homepage
Edit this page

Code Bundling

When you first create a Langium project using the Yeoman generator, it will only contain a plain TypeScript configuration, without any additional build processes. However, if you want to make your language available for consumption in a non-development context, you’ll want to create a bundle. It is not absolutely necessary in a Node.js context, since you can always resolve local node_modules but it’s still recommended for vscode extensions. It improves performance and decreases file size by minifying your code and only including what you actually need.

We generally recommend using esbuild to bundle Langium based language servers and extensions. To install it, simply run:

npm i --save-dev esbuild

You can see a minimal configuration file below that bundles both your language server and your extension. It will run as a simple node script.

const watch = process.argv.includes('--watch');
const minify = process.argv.includes('--minify'); // Use this flag for production usage
const success = watch ? 'Watch build succeeded' : 'Build succeeded';

require('esbuild').build({
    // Two entry points, one for the extension, one for the language server
    entryPoints: ['src/extension.ts', 'src/language-server/main.ts'],
    outdir: 'out', // All bundles are put into this directory
    bundle: true, // We want to create bundles for the extension and language server
    external: ['vscode'], // the vscode-module is created on-the-fly during runtime and must be excluded
    platform: 'node', // VSCode extensions run in a node process
    sourcemap: !minify, // Sourcemaps help us debug our original TypeScript code even after bundling
    watch: watch ? {
        onRebuild(error) {
            if (error) console.error('Watch build failed')
            else console.log(success)
        }
    } : false,
    minify
})
    .then(() => console.log(success))
    .catch(() => process.exit(1));

If you want to use a Langium language server in the browser, you can get away with an even smaller setup with the following script in your package.json file:

"scripts": {
  "build:worker": "esbuild ./src/main.ts --bundle --format=iife --outfile=./public/languageServerWorker.js"
}

If you’re more inclined to use webpack, a configuration for an extension bundler can be seen below:

const path = require('path');

const commonConfig = {
    target: 'node',
    mode: 'none',
    devtool: 'nosources-source-map',
    externals: {
        vscode: 'commonjs vscode' // the vscode-module is created on-the-fly and must be excluded
    },
    resolve: {
        extensions: ['.ts', '.js']
    },
    module: {
        rules: [
            {
                test: /\.js$/,
                enforce: 'pre',
                loader: 'source-map-loader',
                exclude: /vscode/
            },
            {
                test: /\.ts$/,
                exclude: /node_modules/,
                use: [
                    {
                        loader: 'ts-loader'
                    }
                ]
            }
        ]
    }
}
const lspConfig = {
    ...commonConfig,
    entry: './src/language-server/main.ts', // the entry point of the language server
    output: {
        path: path.resolve(__dirname, 'out', 'language-server'),
        filename: 'main.js',
        libraryTarget: 'commonjs2',
        devtoolModuleFilenameTemplate: '../../[resource-path]',
        clean: true
    }
};
const vscodeConfig = {
    ...commonConfig,
    entry: './src/extension.ts', // the entry point of this extension
    output: {
        path: path.resolve(__dirname, 'out'),
        filename: 'extension.js',
        libraryTarget: 'commonjs2',
        devtoolModuleFilenameTemplate: '../[resource-path]'
    }
};
module.exports = [lspConfig, vscodeConfig];