Adding jest on the server process

This commit is contained in:
2021-02-14 14:25:09 +01:00
parent 993a451df0
commit 0621557f22
4 changed files with 3731 additions and 36 deletions

7
server/babel.config.js Normal file
View File

@@ -0,0 +1,7 @@
module.exports = {
presets: [
['@babel/preset-env', { targets: { node: 'current' } }],
'@babel/preset-typescript',
],
plugins: [['@babel/plugin-proposal-decorators', { legacy: true }]],
};