This commit is contained in:
miqlangelo 2025-05-07 15:27:23 +02:00
parent 4db6238d98
commit 7a0835e62d
2 changed files with 24 additions and 1 deletions

View File

@ -5,6 +5,12 @@
"imports": {
"@std/assert": "jsr:@std/assert@1",
"date-fns": "npm:date-fns"
}
},
"compilerOptions": {
"strict": true
},
"unstable": [
"sloppy-imports"
]
}

View File

@ -0,0 +1,17 @@
{
"name": "12-testing-kata",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.3.2"
}
}