-
Notifications
You must be signed in to change notification settings - Fork 10
/
webpack.config.js
49 lines (46 loc) · 1.13 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
//@ts-check
'use strict';
const path = require('path');
/** @type {import('webpack').Configuration} */
const config = {
target: 'node',
entry: './src/index.ts',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'extension.js',
libraryTarget: 'commonjs2',
devtoolModuleFilenameTemplate: '../[resource-path]'
},
devtool: 'source-map',
externals: {
"@esfx/equatable": 'commonjs @esfx/equatable',
"@microsoft/typescript-etw": "commonjs @microsoft/typescript-etw",
"vscode": 'commonjs vscode',
"typescript": 'commonjs typescript',
"ref-napi": "commonjs ref-napi",
"ref-struct-di": "commonjs ref-struct-di",
"ffi-napi": "commonjs ffi-napi",
},
resolve: {
extensions: ['.ts', '.tsx', '.js'],
extensionAlias: {
'.js': ['.js', '.ts'],
'.cjs': ['.cjs', '.cts'],
'.mjs': ['.mjs', '.mts']
},
},
module: {
rules: [
{
test: /\.([cm]?ts|tsx)$/,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader'
}
]
}
]
}
};
module.exports = config;