mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 18:27:59 -04:00
10 lines
287 B
JavaScript
10 lines
287 B
JavaScript
var defaults = require('lodash').defaults;
|
|
const babelOptions = require('../../src/optimize/babel_options');
|
|
|
|
require('source-map-support').install();
|
|
require('babel/register')(defaults({
|
|
ignore: [
|
|
'test/fixtures/scenarios/**/*',
|
|
'node_modules/**',
|
|
]
|
|
}, babelOptions.node));
|