mirror of
https://activitypub.software/TransFem-org/sfm-js
synced 2024-11-22 05:55:13 +00:00
26 lines
463 B
JavaScript
26 lines
463 B
JavaScript
module.exports = {
|
|
entry: './src/client/main-entry.ts',
|
|
output: {
|
|
path: `${__dirname}/built/client`,
|
|
publicPath: '/', // base path of URL
|
|
filename: 'bundle.js',
|
|
chunkFilename: "bundle.[name].js",
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{
|
|
loader: 'ts-loader',
|
|
options: { configFile: 'tsconfig.client.json' },
|
|
},
|
|
],
|
|
},
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.js'],
|
|
},
|
|
};
|