Skip to content

Commit

Permalink
Removed trailling commas
Browse files Browse the repository at this point in the history
  • Loading branch information
BeardedFish committed Dec 2, 2023
1 parent 0e38f3d commit ef8c07e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webpack.config.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = function webpackBase(extensionConfig) {
resolve: {
alias: {
"@client": path.resolve(__dirname, "client", "src"),
"@language-server": path.resolve(__dirname, "server", "src"),
"@language-server": path.resolve(__dirname, "server", "src")
},
mainFields: [
"module",
Expand All @@ -22,7 +22,7 @@ module.exports = function webpackBase(extensionConfig) {
extensions: [
".ts",
".js"
],
]
},
module: {
rules: [
Expand All @@ -48,7 +48,7 @@ module.exports = function webpackBase(extensionConfig) {
output: {
filename: "[name].js",
path: path.join(extensionConfig.context || "./", "dist"),
libraryTarget: "commonjs",
libraryTarget: "commonjs"
},
devtool: "source-map"
};
Expand Down

0 comments on commit ef8c07e

Please sign in to comment.