-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
37 lines (37 loc) · 976 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
{
"compilerOptions": {
"checkJs": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"useUnknownInCatchVariables": true
},
"include": ["."],
"lock": false,
"lint": {
"files": {
"exclude": ["target"],
"include": ["."]
},
"rules": {
"exclude": [
"no-empty-interface",
"no-explicit-any",
"no-namespace",
"no-empty",
"no-extra-semi",
"ban-types",
"require-await"
],
"tags": ["recommended"]
}
},
"tasks": {
"npm": "deno run -A _tasks/npm.ts",
"test": "deno test -A -L=info --ignore=target --parallel",
"test:update": "deno task test -- --update",
"mod": "deno run -A https://deno.land/x/[email protected]/mod.ts --exclude '*.test.ts' '*.node.ts' && dprint fmt",
"star": "deno run -A https://deno.land/x/[email protected]/main.ts -c -e target"
}
}