This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdeno.jsonc
48 lines (48 loc) · 1.75 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
{
"compilerOptions": {
"checkJs": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"useUnknownInCatchVariables": true
},
"importMap": "import_map.json",
"include": ["."],
"lock": false,
"lint": {
"files": {
"exclude": ["deps/shims", "target", "util/_artifacts"],
"include": ["."]
},
"rules": {
"exclude": [
"no-empty-interface",
"no-explicit-any",
"no-namespace",
"no-empty",
"no-extra-semi",
"ban-types",
"require-await"
],
"tags": ["recommended"]
}
},
"tasks": {
"debug": "deno run -A --inspect-brk",
"udd": "deno run -A _tasks/udd.ts",
"dnt": "deno task run _tasks/dnt.ts",
"test": "deno task capi serve -- deno test -A -L=info --ignore=target --parallel -r=http://localhost:4646/",
"test:update": "deno task test -- --update",
"test:eg": "deno task run https://deno.land/x/[email protected]/main.ts",
"test:eg:deno": "deno task test:eg test deno 'examples/**/*.eg.ts'",
"test:eg:node": "deno task test:eg test node 'target/npm/capi-examples/esm/examples/**/*.eg.js'",
"moderate": "deno run -A https://deno.land/x/[email protected]/mod.ts --exclude '*.test.ts' '*.node.ts' && dprint fmt",
"capi": "deno run -A main.ts",
"cache": "deno task capi serve -- deno cache -r=http://localhost:4646/",
"check": "deno task capi serve -- deno cache --check",
"star": "deno task run _tasks/star.ts && deno task check target/star.ts",
"sync": "mkdir -p target && deno task capi serve -- deno task capi sync deno --server http://localhost:4646/",
"run": "deno task capi serve -- deno run -A -r=http://localhost:4646/"
}
}