-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
58 lines (58 loc) · 1.25 KB
/
deno.json
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
57
58
{
"importMap": "./import_map.json",
"compilerOptions": {
"strict": true,
"experimentalDecorators": true,
"lib": [
"deno.window",
"deno.ns",
"dom",
"dom.iterable",
"dom.asynciterable"
],
"types": [
"https://deno.land/x/[email protected]/mod.ts",
"https://deno.land/x/[email protected]/deno-dom-wasm.ts",
"https://deno.land/x/[email protected]/mod.ts",
"./lib/types.d.ts"
]
},
"fmt": {
"files": {
"exclude": [
".devcontainer",
".git*",
".vscode",
"*.md",
"LICENSE"
]
},
"options": {
"proseWrap": "preserve"
}
},
"lint": {
"files": {
"exclude": [
".devcontainer",
".git*",
".vscode",
"*.md",
"LICENSE"
]
},
"rules": {
"exclude": [
"no-explicit-any"
]
}
},
"tasks": {
"dev": "deno run -A --unstable --watch=.,./tests,./lib serve.ts",
"serve": "deno run --allow-net --unstable serve.ts",
"test": "deno test -A --jobs 4",
"test:nocheck": "deno test -A --no-check --jobs 4",
"test:unstable": "deno test -A --unstable --jobs 4",
"test:unstable:nocheck": "deno test -A --unstable --no-check --jobs 4"
}
}