Initial commit with GitLab CI/CD pipeline

This commit is contained in:
Emmanuel
2026-01-06 22:17:37 +01:00
commit b5a5b973f7
12 changed files with 779 additions and 0 deletions

24
deno.json Normal file
View File

@@ -0,0 +1,24 @@
{
"tasks": {
"dev": "deno run --allow-net --allow-env --watch src/main.ts",
"start": "deno run --allow-net --allow-env src/main.ts",
"test": "deno test --allow-net --allow-env src/main.test.ts"
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
},
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"compilerOptions": {
"lib": ["deno.window"],
"strict": true
}
}