mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:31:43 +00:00
Internal revision: sourcegraph/sourcegraph-intermediate-2018@d0cebbadc7 Executor: @slimsag
18 lines
316 B
JavaScript
18 lines
316 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@babel/core').TransformOptions} */
|
|
const config = {
|
|
plugins: ['@babel/plugin-syntax-dynamic-import', 'babel-plugin-lodash'],
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
useBuiltIns: 'entry',
|
|
modules: false,
|
|
},
|
|
],
|
|
],
|
|
}
|
|
|
|
module.exports = config
|