mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-19 22:55:08 +01:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
|
// Needed for jest.
|
||
|
module.exports = {
|
||
|
inputSourceMap: true,
|
||
|
presets: [
|
||
|
'@babel/preset-typescript',
|
||
|
['@babel/preset-env', { targets: { node: 'current' } }],
|
||
|
'@babel/preset-react',
|
||
|
],
|
||
|
}
|