chore(config): add deno configuration and lockfile

This commit is contained in:
2025-05-21 02:57:26 +02:00
parent a058e7b683
commit 0b720500e0
2 changed files with 202 additions and 0 deletions

24
deno.jsonc Normal file
View File

@@ -0,0 +1,24 @@
{
"tasks": {
"start": "deno run -A src/mod.ts",
"test": "deno test -A --coverage **/__tests__/*.test.ts",
"build": "deno compile --allow-env --allow-write --output dist/systemd-timer src/mod.ts"
},
"compilerOptions": {},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/",
"mod.ts"
]
},
"exclude": [],
"imports": {
"@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7"
}
}