-
-
Notifications
You must be signed in to change notification settings - Fork 549
Expand file tree
/
Copy pathwebpack.config.ts
More file actions
140 lines (132 loc) · 3.35 KB
/
webpack.config.ts
File metadata and controls
140 lines (132 loc) · 3.35 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import 'webpack-dev-server';
import path from 'node:path';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import type { ExternalItemFunctionData } from 'webpack';
import webpack from 'webpack';
import packageJSON from './package.json' with { type: 'json' };
const BANNER = `GraphQL Voyager - Represent any GraphQL API as an interactive graph
-------------------------------------------------------------
Version: ${packageJSON.version}
Repo: ${packageJSON.repository.url}`;
const baseConfig: webpack.Configuration = {
devtool: 'source-map',
// disable hints since Voyager is too big :(
performance: { hints: false },
resolve: {
extensionAlias: {
'.js': ['.ts', '.tsx', '.mjs', '.js'],
'.ts': ['.mjs', '.js', '.ts'],
},
extensions: ['.js', '.json', '.css', '.svg'],
},
output: {
path: path.join(import.meta.dirname, 'dist'),
sourceMapFilename: '[file].map',
},
module: {
rules: [
{
resourceQuery: /raw/,
type: 'asset/source',
},
{
test: /\.tsx?$/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
compilerOptions: { noEmit: false },
},
},
exclude: [/\.(spec|e2e)\.ts$/],
},
{
test: /\.css$/,
exclude: /variables\.css$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: { sourceMap: true },
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
postcssOptions: {
plugins: ['postcss-import', 'postcss-cssnext'],
},
},
},
],
},
{
test: /variables\.css$/,
use: [{ loader: 'postcss-variables-loader?es5=1' }],
},
{
test: /\.svg$/,
issuer: /\.tsx?$/,
resourceQuery: { not: [/raw/] },
use: [
{
loader: '@svgr/webpack',
options: { typescript: true, ext: 'tsx' },
},
],
},
],
},
plugins: [
new MiniCssExtractPlugin({
filename: 'voyager.css',
}),
new webpack.BannerPlugin({
banner: BANNER,
stage: webpack.Compilation.PROCESS_ASSETS_STAGE_REPORT,
}),
],
};
const config: Array<webpack.Configuration> = [
{
...baseConfig,
entry: './src/index.ts',
externalsType: 'module',
externals,
output: {
...baseConfig.output,
filename: 'voyager.lib.js',
library: { type: 'modern-module' },
libraryTarget: 'modern-module',
},
experiments: { outputModule: true },
},
{
...baseConfig,
entry: './src/standalone.ts',
externals: undefined,
output: {
...baseConfig.output,
filename: 'voyager.standalone.js',
library: 'GraphQLVoyager',
libraryTarget: 'umd',
umdNamedDefine: true,
},
devServer: {
port: 9090,
static: {
directory: path.join(import.meta.dirname, 'demo'),
},
liveReload: true,
},
},
];
export default config;
function externals({ request }: ExternalItemFunctionData) {
return Promise.resolve(
[
...Object.keys(packageJSON.peerDependencies),
...Object.keys(packageJSON.dependencies),
].some((pkg) => request === pkg || request?.startsWith(pkg + '/')),
);
}