-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
56 lines (56 loc) · 1.01 KB
/
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
49
50
51
52
53
54
55
56
{
"tasks": {
"prepare": "which land &>/dev/null || deno install -A -f -n land https://deno.land/x/land@v0.9.3/cli.ts &>/dev/null; deno fmt && deno lint --unstable && deno test -A --unstable --no-check;",
"publish": "deno task prepare && land publish -A"
},
"compilerOptions": {
"lib": [
"deno.ns",
"deno.window",
"dom.iterable",
"dom",
"esnext"
],
"types": [
"./types.d.ts"
],
"strict": true,
"strictNullChecks": true
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any",
"ban-types",
"ban-ts-comment",
"no-unused-vars",
"no-var"
]
},
"files": {
"exclude": [
".devcontainer",
".vscode",
".git*",
"*_test.ts",
"*.js"
]
}
},
"fmt": {
"files": {
"exclude": [
".devcontainer*",
".vscode",
".git*"
]
}
},
"test": {
"files": {
"exclude": [
"deps_test.ts"
]
}
}
}