-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
43 lines (43 loc) · 1.08 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
{
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
],
"exclude": [
"require-await",
"require-yield",
"no-unused-vars",
"no-empty"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"@blowater/nostr-sdk": "jsr:@blowater/nostr-sdk@^0.0.13",
"@std/datetime": "jsr:@std/datetime@^0.224.5",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"lib": [
"deno.unstable",
"dom"
],
"noImplicitAny": false
},
"fmt": {
"indentWidth": 4,
"lineWidth": 110,
"exclude": ["cov_profile", "coverage"]
},
"lock": false
}