add tests infrastructure

This commit is contained in:
Emily
2024-08-29 16:31:44 +02:00
parent 9b9ed3e9ad
commit 79309cc537
5 changed files with 2469 additions and 4 deletions

View File

@@ -1,9 +1,14 @@
{
"compilerOptions": {
"baseUrl": ".",
"module": "NodeNext",
"target": "ESNext",
"esModuleInterop": true,
"outDir": "dist",
"types": [
"node",
"jest"
],
"paths": {
"@schema/*": [
"../shared/schema/*"
@@ -21,7 +26,9 @@
},
"include": [
"src/**/*.ts",
"scripts/**/*.ts"
"scripts/**/*.ts",
"tests/**/*.test.ts",
"tests/utils.ts",
],
"exclude": [
"node_modules"