feat: deno base project

This commit is contained in:
2025-11-27 22:40:24 +01:00
parent 7cb4573737
commit 11fd4cb826
6 changed files with 63 additions and 0 deletions

12
deno.json Normal file
View File

@@ -0,0 +1,12 @@
{
"tasks": {
"dev": "deno run -R --watch src/main.ts",
"today:dev": "deno run -R --watch src/main.ts $(date +%e)",
"today": "deno run -R src/main.ts $(date +%e)",
"test": "deno test --parallel src"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@/": "./src/"
}
}