-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 1.25 KB
/
Copy pathdeno.json
File metadata and controls
32 lines (32 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"tasks": {
"dev": "deno run --allow-net --watch src/main.ts",
"server:dev": "deno run --allow-net --watch src/main.ts",
"server:start": "deno run --allow-net src/main.ts",
"test": "deno test",
"release": "deno run -A .git-bin/release.ts",
"issues:scan": ".git-bin/git-issues.ts",
"issues:scan:src": ".git-bin/git-issues.ts --path src --out .git-bin/.bugs",
"issues:hook:install": "sh -c 'printf \"%s\\n\" \"#!/bin/sh\" \".git-bin/git-issues.ts --out .git-bin/.issues\" \".git-bin/git-issues.ts --path src --out .git-bin/.bugs\" \".git-bin/issues-web.ts\" \"deno run -A .git-bin/history-web.ts\" > .git/hooks/post-commit && chmod +x .git/hooks/post-commit .git-bin/git-issues.ts .git-bin/issues-web.ts'",
"issues:web": "deno run --allow-read --allow-run .git-bin/open-html.ts",
"issues:history": "deno run --allow-read --allow-run .git-bin/open-history.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
},
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"useUnknownInCatchVariables": true,
"noFallthroughCasesInSwitch": true,
"lib": ["deno.ns", "esnext", "dom"]
},
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"fmt": {
"lineWidth": 100
}
}