forked from James-Yu/LaTeX-Workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
43 lines (41 loc) · 867 Bytes
/
webpack.config.js
File metadata and controls
43 lines (41 loc) · 867 Bytes
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
const path = require('path')
const config = {
target: 'node',
entry: './src/main.ts',
output: {
path: path.resolve(__dirname, 'out', 'src'),
filename: 'main.js',
libraryTarget: 'commonjs2',
devtoolModuleFilenameTemplate: 'file:///[absolute-resource-path]'
},
devtool: 'source-map',
externals: {
vscode: 'commonjs vscode',
fsevents: 'commonjs fsevents',
'utf-8-validate': 'utf-8-validate',
'bufferutil': 'bufferutil',
'mathjax-node': 'mathjax-node',
'mathjax': 'mathjax'
},
resolve: {
extensions: ['tsx', '.ts', '.jsx', '.js']
},
node: {
__dirname: false,
__filename: false,
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader'
}
]
}
]
}
}
module.exports = config