-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
75 lines (73 loc) · 2.62 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
const Path = require('path');
const packageJson = require('./package.json');
module.exports = {
entry: {
[`kapeta/resource-type-rest-api:${packageJson.version}`]: {
import: Path.resolve(__dirname, './src/web/RESTAPIConfig.ts'),
filename: `kapeta/resource-type-rest-api.js`,
},
[`kapeta/resource-type-rest-client:${packageJson.version}`]: {
import: Path.resolve(__dirname, './src/web/RESTClientConfig.ts'),
filename: `kapeta/resource-type-rest-client.js`,
},
},
output: {
path: Path.join(process.cwd(), 'web'),
filename: '[name].js',
library: {
name: `Kapeta.resourceTypes["[name]"]`,
type: 'assign',
export: 'default',
},
},
module: {
rules: [
{
test: /\.(ts|tsx)$/,
loader: 'babel-loader',
options: {
sourceMaps: true,
presets: ['@babel/env', '@babel/typescript', '@babel/react'],
plugins: [
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-private-methods', { loose: true }],
['@babel/plugin-proposal-private-property-in-object', { loose: true }],
['@babel/plugin-proposal-class-properties', { loose: true }],
'@babel/proposal-object-rest-spread',
],
},
},
{
test: /\.css/,
use: ['style-loader', 'css-loader'],
include: Path.resolve(__dirname, './'),
},
{
test: /\.less$/,
use: ['style-loader', 'css-loader', 'less-loader'],
include: Path.resolve(__dirname, './'),
},
{
test: /\.ya?ml$/,
use: ['json-loader', 'yaml-loader'],
include: Path.resolve(__dirname, './'),
},
],
},
devtool: process.env.NODE_ENV === 'production' ? 'source-map' : 'inline-source-map',
resolve: {
extensions: ['.js', '.ts', '.tsx', '.less', '.yml', '.yaml'],
fallback: {
path: require.resolve('path-browserify'),
},
},
externals: {
react: 'React',
'react-dom': 'ReactDOM',
lodash: '_',
'@kapeta/ui-web-components': 'Kapeta.Components',
'@kapeta/ui-web-types': 'Kapeta.Types',
'@kapeta/ui-web-utils': 'Kapeta.Utils',
'@kapeta/ui-web-context': 'Kapeta.Context',
},
};