This repository has been archived on 2024-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
cosmos-sql-language-service/dist/worker/webpack.config.js

29 lines
638 B
JavaScript
Raw Normal View History

2018-11-26 15:46:04 +00:00
"use strict";
module.exports = {
entry: {
LanguageServiceWorker: './LanguageServiceWorker.ts'
},
mode: 'production',
target: 'web',
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.ts', '.js']
},
output: {
globalObject: 'this',
path: __dirname + "/dist",
filename: '[name].js',
library: '[name]',
libraryTarget: 'umd'
},
node: { fs: "empty" }
};
//# sourceMappingURL=webpack.config.js.map