sforkowany z mirror/soapbox
24 wiersze
582 B
TypeScript
24 wiersze
582 B
TypeScript
import { resolve } from 'path';
|
|
|
|
import { env } from '../configuration';
|
|
|
|
import type { RuleSetRule } from 'webpack';
|
|
|
|
// This is a hack, used in conjunction with rules/git-refresh.js
|
|
// https://github.com/kentcdodds/babel-plugin-preval/issues/19
|
|
|
|
const rule: RuleSetRule = {
|
|
test: resolve(__dirname, '../../app/soapbox/utils/code.js'),
|
|
use: [
|
|
{
|
|
loader: 'babel-loader',
|
|
options: {
|
|
cacheDirectory: false,
|
|
cacheCompression: env.NODE_ENV === 'production',
|
|
compact: env.NODE_ENV === 'production',
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default rule; |