-
Notifications
You must be signed in to change notification settings - Fork 36
/
webpack.config.js
67 lines (65 loc) · 2.04 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
/*-----------------------------------------------------------------------------------------------
* Copyright (c) Red Hat, Inc. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*-----------------------------------------------------------------------------------------------*/
// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require('path');
module.exports = {
performance: { hints: false },
entry: {
'pipeline-preview': {import: './src/webview/pipeline-preview/index.ts', filename: 'webview/[name]/index.js'},
'pipeline-wizard': {import: './src/webview/pipeline/app/index.ts', filename: 'webview/[name]/index.js'},
'bundle': {import: './src/webview/bundle/index.tsx', filename: 'webview/[name]/index.js'},
'tekton-hub': {import: './src/webview/hub/index.ts', filename: 'webview/[name]/index.js'},
'resource-view': {import: './src/webview/resource-page/index.ts', filename: 'webview/[name]/index.js'}
},
module: {
rules: [
{
test: /\.tsx?$/,
use:
{
loader: 'ts-loader',
options: {
configFile: 'webview-tsconfig.json'
}
},
exclude: /node_modules/,
},
{
test: /\.(css|scss)$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
{
loader: 'sass-loader',
}
]
},
{
test: /\.(woff|woff2|ttf|eot)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'webview/assets/'
}
},
{
test: /\.(jpe?g|png|svg?)(\?[a-z0-9=&.]+)?$/,
use: 'base64-inline-loader?limit=1000&name=[name].[ext]'
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
},
devtool: 'inline-source-map',
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'out')
}
};