feat: first release

This commit is contained in:
2024-06-30 14:06:20 +02:00
commit e286e3092c
7 changed files with 160 additions and 0 deletions

13
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"deno.enable": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "denoland.vscode-deno",
"emeraldwalk.runonsave": {
"commands": [
{
"match": "\\.ts$",
"cmd": "deno lint ${file} --fix"
}
]
}
}