Sha256: 8c95ea7fac51ab8966bba547c84c41a429d134ef7ab8ddf1a2484da488906659
Contents?: true
Size: 661 Bytes
Versions: 15
Compression:
Stored size: 661 Bytes
Contents
const { resolve } = require('path') const { realpathSync } = require('fs') const { source_path: sourcePath, additional_paths: additionalPaths } = require('../config') const { isProduction } = require('../env') module.exports = { test: /\.(js|jsx|mjs|ts|tsx|coffee)?(\.erb)?$/, include: [sourcePath, ...additionalPaths].map((p) => { try { return realpathSync(p) } catch (e) { return resolve(p) } }), exclude: /node_modules/, use: [ { loader: require.resolve('babel-loader'), options: { cacheDirectory: true, cacheCompression: isProduction, compact: isProduction } } ] }
Version data entries
15 entries across 15 versions & 2 rubygems