-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.jsonc
38 lines (38 loc) · 1.12 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
{
"compilerOptions": {
"checkJs": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true
},
"lock": false,
"lint": {
"files": {
"exclude": ["target"],
"include": ["."]
},
"rules": {
"exclude": [
"ban-types",
"no-empty",
"no-explicit-any",
"no-namespace",
"require-await",
"no-extra-semi"
],
"tags": ["recommended"]
}
},
"include": ["."],
"tasks": {
"build": "deno run -A _tasks/build.ts",
"run": "deno task build && deno run -A --no-check=remote",
"dnt": "deno task build && deno task run _tasks/dnt.ts",
"test": "deno task build && deno test -A --no-check=remote -L=info",
"test-update": "deno task build && deno test -A --no-check=remote -L=info -- --update",
"bench": "deno task build && deno bench -A --no-check=remote --unstable",
"star": "deno task run _tasks/star.ts && deno cache --no-check=remote target/star.ts; deno task build",
"moderate": "deno task run https://deno.land/x/[email protected]/mod.ts && dprint fmt"
},
"lock": false
}