-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
46 lines (46 loc) · 871 Bytes
/
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
{
"importMap": "import_map.json",
"compilerOptions": {
"types": [
"lume/types.ts"
],
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns",
"deno.unstable"
]
},
"tasks": {
"build": "deno task lume",
"serve": "deno task lume -s",
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable -A -"
},
"lint": {
"files": {
"exclude": [
"./_site"
]
},
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"options": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 3,
"singleQuote": false,
"proseWrap": "preserve"
},
"files": {
"exclude": [
"./_site"
]
}
}
}