mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
* First try Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Removed Nodejs 15.x from tests Signed-off-by: Avior <florian.bouillon@delta-wings.net>
8 lines
147 B
JavaScript
8 lines
147 B
JavaScript
// Babel config for Jest
|
|
module.exports = {
|
|
presets: [
|
|
['@babel/preset-env', {targets: {node: 'current'}}],
|
|
'@babel/preset-typescript'
|
|
],
|
|
};
|