chore: add initial Deno configuration file

Signed-off-by: Max P. <Mail@MPassarello.de>
This commit is contained in:
2025-05-02 19:54:48 +02:00
parent 4fa78afbc2
commit 3a52f14dcd
2 changed files with 73 additions and 0 deletions

34
deno.jsonc Normal file
View File

@@ -0,0 +1,34 @@
{
"compilerOptions": {},
"lint": {
"files": {
"include": [
"src/"
],
}
},
"fmt": {
"files": {
"include": [
"src/",
"tests/"
],
},
"options": {
"lineWidth": 100,
"indentWidth": 4,
"useTabs": false
}
},
"test": {
"include": [
"tests/"
],
},
"tasks": {
"test": "deno test --coverage tests/*.ts",
"lint": "deno lint",
"fmt": "deno fmt",
"build": "echo 'Kein Build nötig bei Deno'"
}
}