testing with jest

This commit is contained in:
2024-12-16 21:25:36 +00:00
parent 9ed0a19393
commit c43bff3e15
5 changed files with 2706 additions and 46 deletions

View File

@ -1,4 +1,8 @@
{
"include": [
"./src/**/*.ts",
"./tests/**/*.ts"
],
"compilerOptions": {
"target": "esnext",
"module": "ESNext",
@ -8,11 +12,15 @@
"strict": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"paths": {
"@/*": [
"./src/*"
]
}
}
},
"exclude": [
"node_modules",
"./*.ts",
"__test__"
]
}