-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.json
42 lines (42 loc) · 864 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
{
"fmt": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve",
"exclude": [
"public/js/sweetalert.js"
]
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any",
"no-window-prefix",
"no-window"
]
},
"exclude": [
"public/js/sweetalert.js"
]
},
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns"
]
},
"lock": false,
"imports": {
"/": "./",
"./": "./",
"std/assert/equals": "jsr:@std/assert@1.0.6/equals",
"std/assert/not-equals": "jsr:@std/assert@1.0.6/not-equals",
"std/http/file-server": "jsr:@std/http@1.0.7/file-server",
"std/dotenv/load": "jsr:@std/dotenv@0.225.2/load",
"deno/emit": "jsr:@deno/emit@0.45.0"
}
}