-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.js
48 lines (44 loc) · 1.31 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
const path = require('path');
// Custom webpack rules
const rules = [
{ test: /\.ts$/, loader: 'ts-loader', type: 'javascript/auto' },
{ test: /\.js$/, loader: 'source-map-loader', type: 'javascript/auto' },
{ test: /\.css$/, use: ['style-loader', 'css-loader'], type: 'javascript/auto'}
];
// Packages that shouldn't be bundled but loaded at runtime
const externals = ['@jupyter-widgets/base', 'module'];
const resolve = {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: [".webpack.js", ".web.js", ".ts", ".js"],
fallback: {
os: false
}
};
module.exports = [
/**
* Embeddable @tiledb-inc/pybabylonjs bundle
*
* This bundle is almost identical to the notebook extension bundle. The only
* difference is in the configuration of the webpack public path for the
* static assets.
*
* The target bundle is always `dist/index.js`, which is the path required by
* the custom widget embedder.
*/
{
entry: ['./amd-public-path.js', './src/embed.ts'],
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'amd',
library: "@tiledb-inc/pybabylonjs",
publicPath: '', // Set in amd-public-path.js
},
devtool: 'source-map',
module: {
rules: rules
},
externals,
resolve,
}
];