forked from aws/aws-toolkit-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
118 lines (112 loc) · 3.41 KB
/
webpack.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*!
* Copyright 2020 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}`
const { VueLoaderPlugin } = require('vue-loader')
/**@type {import('webpack').Configuration}*/
const baseConfig = {
name: 'main',
target: 'node',
entry: {
extension: './src/extension.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: [
{
// vscode-nls-dev loader:
// * rewrite nls-calls
loader: 'vscode-nls-dev/lib/webpack-loader',
options: {
base: path.join(__dirname, 'src'),
},
},
{
loader: 'esbuild-loader',
options: {
loader: 'ts',
target: 'es2018',
},
},
],
},
{
test: /node_modules[\\|/](amazon-states-language-service)/,
use: { loader: 'umd-compat-loader' },
},
],
},
plugins: [
new NLSBundlePlugin(packageId),
new webpack.DefinePlugin({
PLUGINVERSION: JSON.stringify(packageJson.version),
}),
new CircularDependencyPlugin({
exclude: /node_modules|testFixtures/,
failOnError: true,
}),
],
optimization: {
minimize: true,
minimizer: [
new ESBuildMinifyPlugin({
target: 'es2018',
}),
],
},
}
// TODO: use webpack merge? probably not worth it if switching over to esbuild
const vueConfig = {
...baseConfig,
name: 'vue',
target: 'web',
entry: {
samInvokeVue: path.resolve(__dirname, 'src', 'lambda', 'vue', 'samInvokeEntry.ts'),
},
module: {
rules: baseConfig.module.rules.concat(
{
test: /\.vue$/,
loader: 'vue-loader',
},
{
test: /\.css$/,
use: ['vue-style-loader', 'css-loader'],
}
),
},
plugins: baseConfig.plugins.concat(new VueLoaderPlugin()),
}
module.exports = [baseConfig, vueConfig]