This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
87 lines (85 loc) · 2.03 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
'use strict';
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const CopyPlugin = require("copy-webpack-plugin");
module.exports = function (env, argv) {
const mode = argv.mode || 'none';
return {
entry: {
'index': './lib/index.ts'
},
mode: mode,
target: 'node',
devtool: 'source-map',
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist', 'lib'),
library: {
name: 'vscode-languagedetection',
type: 'umd',
},
globalObject: 'this'
},
optimization: {
minimizer: [
new TerserPlugin({
parallel: true,
terserOptions: {
ecma: 6,
compress: mode === 'production',
mangle: mode === 'production',
output: {
beautify: mode !== 'production',
comments: false,
ecma: 6,
},
},
}),
],
},
module: {
rules: [
{
test: /\.tsx?$/,
use: {
loader: 'ts-loader',
options: {
experimentalWatchApi: true,
},
},
exclude: /\.d\.ts$/,
}
],
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json'],
alias: {
'onnxruntime-web': path.resolve(__dirname, 'node_modules', 'onnxruntime-web', 'dist', 'ort-web.node.js'),
},
},
plugins: [
new CopyPlugin({
patterns: [{
from: path.resolve(__dirname, 'node_modules', 'onnxruntime-web', 'dist', 'ort-wasm.wasm'),
to: path.resolve(__dirname, 'dist')
}, {
from: path.resolve(__dirname, 'model', '*'),
to: path.resolve(__dirname, 'dist')
}]
})
],
stats: {
preset: 'errors-warnings',
assets: true,
colors: true,
env: true,
errorsCount: true,
warningsCount: true,
timings: true,
},
};
};