chore: add ESLint, Prettier and Jest configuration

This commit is contained in:
Developer
2026-03-18 16:19:03 +08:00
parent 5dd00c310f
commit c1c7eb006b
5 changed files with 96 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
module.exports = {
testEnvironment: 'node',
roots: ['<rootDir>/server'],
testMatch: ['**/__tests__/**/*.test.js'],
verbose: true,
};