-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwebpack.config.ts
73 lines (66 loc) · 2.21 KB
/
webpack.config.ts
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
/* eslint-disable import/no-extraneous-dependencies */
import { resolve } from 'path';
import url from 'url';
// eslint-disable-next-line import/no-named-as-default
import webpack from 'webpack';
const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
function configFor(target: 'web' | 'node' | 'react-native'): webpack.Configuration {
const t = target === 'react-native' ? 'web' : target;
const entry =
target === 'react-native'
? resolve(__dirname, './src/index.react-native.ts')
: resolve(__dirname, './src/index.ts');
const config: webpack.Configuration = {
mode: 'production',
target: t,
cache: {
type: 'filesystem',
cacheDirectory: resolve(__dirname, '.webpack-cache'),
},
entry: {
concordium: entry,
},
plugins: [
new webpack.SourceMapDevToolPlugin({
filename: '[file].map',
}),
],
resolve: {
extensionAlias: {
'.js': ['.ts', '.js'],
},
extensions: ['.tsx', '.ts', '.js'],
},
module: {
rules: [
{
test: /\.tsx?$/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
configFile: resolve(__dirname, './tsconfig.build.json'),
},
},
exclude: /node_modules/,
},
],
},
output: {
filename: `[name].${target}.min.js`,
path: resolve(__dirname, 'lib/min'),
library: {
name: 'concordiumSDK',
type: 'umd',
},
},
};
if (target === 'node') {
config.output = { ...config.output, library: { type: 'commonjs2' } }; // To support legacy versions of nodeJS.
}
if (target === 'react-native') {
config.resolve!.conditionNames = ['react-native', 'browser', 'module', 'require'];
}
return config;
}
export default [configFor('web'), configFor('node'), configFor('react-native')];