mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
25 lines
363 B
JavaScript
Executable File
25 lines
363 B
JavaScript
Executable File
module.exports = {
|
|
presets: [
|
|
"@babel/env",
|
|
[
|
|
"@babel/preset-typescript",
|
|
{
|
|
targets: {
|
|
node: "current"
|
|
}
|
|
}
|
|
]
|
|
],
|
|
plugins: [
|
|
"@babel/proposal-class-properties",
|
|
"@babel/proposal-object-rest-spread"
|
|
],
|
|
env: {
|
|
test: {
|
|
plugins: [
|
|
"@babel/plugin-transform-runtime",
|
|
"@babel/plugin-transform-typescript"
|
|
]
|
|
}
|
|
}
|
|
} |