-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
43 lines (43 loc) · 839 Bytes
/
deno.jsonc
File metadata and controls
43 lines (43 loc) · 839 Bytes
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
{
"compilerOptions": {
"strict": true,
"lib": [
"deno.ns",
"deno.window",
"dom",
"dom.iterable",
"dom.asynciterable",
"esnext"
],
"types": [
"mod.d.ts"
]
},
"importMap": "./import_map.json",
"tasks": {
"release": "{ deno fmt; deno lint --unstable; deno test -A --unstable --no-check; } && deno run -A --unstable https://deno.land/x/pub/cli.ts"
},
"lint": {
"files": {
"exclude": [
".{devcontainer,vscode,github,gitpod.yml}",
"version.ts",
"egg.json"
]
}
},
"fmt": {
"files": {
"exclude": [
".{devcontainer,vscode,github}"
]
},
"options": {
"indentWidth": 2,
"lineWidth": 80,
"proseWrap": "preserve",
"singleQuote": false,
"useTabs": false
}
}
}