-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
38 lines (38 loc) · 748 Bytes
/
deno.jsonc
File metadata and controls
38 lines (38 loc) · 748 Bytes
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
33
34
35
36
37
38
{
"fmt": {
"indentWidth": 2,
"exclude": [
"./cov_profile/"
]
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
]
},
"exclude": [
"./tasks/"
]
},
"tasks": {
"test": "deno test --parallel --coverage=cov_profile",
"coverage": "deno coverage cov_profile",
"test:coverage": "deno task test && deno task coverage",
"test:cov": "deno task test:coverage",
"build": "bun build ./mod.ts --outdir ./dist/"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/testing": "jsr:@std/testing@^1.0.15",
"~/": "./src/",
"#/": "./"
},
"compilerOptions": {
"lib": [
"ESNext",
"deno.window"
],
"strict": true
}
}