Implement input validation and supporting tests with automation of the tests via actions.

This commit is contained in:
Fred Boniface
2025-03-12 21:47:03 +00:00
parent d20d981190
commit c54e517700
6 changed files with 4032 additions and 6 deletions

6
jest.config.js Normal file
View File

@@ -0,0 +1,6 @@
export default {
transform: {
"^.+\\.tsx?$": ["ts-jest", { useESM: true }]
},
extensionsToTreatAsEsm: [".ts"],
};