-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
48 lines (48 loc) · 919 Bytes
/
deno.jsonc
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
39
40
41
42
43
44
45
46
47
48
{
"tasks": {
"prepare": "which land &>/dev/null || deno install -A -f -n land https://deno.land/x/land/cli.ts; deno fmt && deno lint --unstable; deno test --no-check",
"release": "deno task prepare && land publish -A"
},
"compilerOptions": {
"lib": [
"deno.ns",
"deno.window",
"dom",
"esnext"
],
"strict": true,
"types": [
"./mod.d.ts"
]
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any",
"ban-types",
"ban-ts-comment",
"no-empty-interface"
]
},
"files": {
"exclude": [
".{devcontainer,vscode,git,github}"
]
}
},
"fmt": {
"files": {
"exclude": [
".{devcontainer,vscode,git,github}",
"./{README.md,LICENSE}"
]
}
},
"test": {
"files": {
"exclude": [
".{devcontainer,vscode,git,github}"
]
}
}
}