mirror of
https://github.com/project-slippi/slippi-js.git
synced 2025-10-06 00:32:40 +02:00
* migrate yarn -> npm and update ci to node 20 * add eslint-plugin-flowtype to dev deps * fix coverage, add jest and ts-jest explicitly to dev deps still need to fix tests on CI
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
module.exports = {
|
|
testTimeout: 300000, // 5 minutes in milliseconds
|
|
transform: {
|
|
"^.+\\.tsx?$": [
|
|
"ts-jest",
|
|
{
|
|
//the content originally placed at "global"
|
|
diagnostics: false,
|
|
},
|
|
],
|
|
},
|
|
};
|