mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 06:26:21 +00:00
4520e6473a
Co-authored-by: berlysia <berlysia@gmail.com> Co-authored-by: fusagiko / takayamaki <takayamaki@users.noreply.github.com>
22 lines
534 B
JavaScript
22 lines
534 B
JavaScript
const { join, resolve } = require('path');
|
|
const { env, settings } = require('../configuration');
|
|
|
|
module.exports = {
|
|
test: /\.(js|jsx|mjs|ts|tsx)$/,
|
|
include: [
|
|
settings.source_path,
|
|
...settings.resolved_paths,
|
|
].map(p => resolve(p)),
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{
|
|
loader: 'babel-loader',
|
|
options: {
|
|
cacheDirectory: join(settings.cache_path, 'babel-loader'),
|
|
cacheCompression: env.NODE_ENV === 'production',
|
|
compact: env.NODE_ENV === 'production',
|
|
},
|
|
},
|
|
],
|
|
};
|