forked from tjjfvi/subshape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
37 lines (37 loc) · 1006 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,
"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": {
"run": "deno run -A --no-check=remote",
"dnt": "deno task run _tasks/build_npm_pkg.ts",
"test": "deno test -A --no-check=remote -L=info",
"test-update": "deno test -A --no-check=remote -L=info -- --update",
"test-rust": "cargo test",
"bench": "deno bench -A --no-check=remote --unstable",
"star": "deno task run _tasks/star.ts && deno cache --no-check=remote target/star.ts",
"moderate": " deno task run https://deno.land/x/moderate@0.0.5/mod.ts"
}
}