forked from aws/aws-toolkit-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.base.config.js
103 lines (97 loc) · 3.5 KB
/
webpack.base.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*!
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//@ts-check
'use strict'
const path = require('path')
const webpack = require('webpack')
const { ESBuildMinifyPlugin } = require('esbuild-loader')
const fs = require('fs')
const { NLSBundlePlugin } = require('vscode-nls-dev/lib/webpack-bundler')
const CircularDependencyPlugin = require('circular-dependency-plugin')
const packageJsonFile = path.join(__dirname, 'package.json')
const packageJson = JSON.parse(fs.readFileSync(packageJsonFile, 'utf8'))
const packageId = `${packageJson.publisher}.${packageJson.name}`
//@ts-check
/** @typedef {import('webpack').Configuration} WebpackConfig **/
/** @type WebpackConfig */
const baseConfig = {
name: 'main',
target: 'node',
entry: {
'src/main': './src/main.ts',
'src/stepFunctions/asl/aslServer': './src/stepFunctions/asl/aslServer.ts',
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
libraryTarget: 'commonjs2',
devtoolModuleFilenameTemplate: '../[resource-path]',
},
devtool: 'source-map',
externals: {
vscode: 'commonjs vscode',
vue: 'root Vue',
},
resolve: {
extensions: ['.ts', '.js'],
},
node: {
__dirname: false, //preserve the default node.js behavior for __dirname
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules|testFixtures/,
use: [
// This creates nls-metadata.json in dist/, but we don't need this functionality currently.
// If we want to have language locale support later we should look to re-enable this.
// This was disabled since it caused issues with the browser version of the toolkit.
// THe localize() func does not work in the browser when used this loader, we got
// the error from
// https://github.com/microsoft/vscode-nls/blob/6f88c23c3ab630e9d4c60f65ed33839bd4a0cec2/src/browser/main.ts#L15
// Now, with this disabled we do not create externalized strings.
// {
// loader: require.resolve('vscode-nls-dev/lib/webpack-loader'),
// options: {
// base: path.join(__dirname, 'src'),
// },
// },
{
// This transpiles our typescript to javascript.
loader: 'esbuild-loader',
options: {
loader: 'ts',
target: 'es2021',
},
},
],
},
{
test: /node_modules[\\|/](amazon-states-language-service|vscode-json-languageservice)/,
use: { loader: 'umd-compat-loader' },
},
],
},
plugins: [
new NLSBundlePlugin(packageId),
new webpack.DefinePlugin({
EXTENSION_VERSION: JSON.stringify(packageJson.version),
}),
new CircularDependencyPlugin({
exclude: /node_modules|testFixtures/,
failOnError: true,
}),
],
optimization: {
minimize: true,
minimizer: [
new ESBuildMinifyPlugin({
target: 'es2021',
}),
],
},
}
module.exports = baseConfig