mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
9 lines
241 B
Plaintext
9 lines
241 B
Plaintext
|
{
|
||
|
"presets": [
|
||
|
// To let test apps(and Jest) to use Next's babel preset
|
||
|
"../babel",
|
||
|
// To transpile import statements into commonjs.
|
||
|
// That's because Jest(runs in Node.js) don't know how to handle them.
|
||
|
"es2015"
|
||
|
]
|
||
|
}
|