mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-10 03:08:06 +01:00
28 lines
510 B
JavaScript
28 lines
510 B
JavaScript
|
const path = require('path')
|
||
|
const webpack = require('webpack')
|
||
|
|
||
|
const mode = process.env.NODE_ENV || 'production'
|
||
|
|
||
|
module.exports = {
|
||
|
output: {
|
||
|
filename: `worker.${mode}.js`,
|
||
|
path: path.join(__dirname, 'dist'),
|
||
|
},
|
||
|
mode,
|
||
|
resolve: {
|
||
|
extensions: ['.ts', '.tsx', '.js'],
|
||
|
plugins: [],
|
||
|
fallback: { util: false }
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.tsx?$/,
|
||
|
loader: 'ts-loader',
|
||
|
options: {
|
||
|
transpileOnly: true,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
}
|