-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
47 lines (40 loc) · 892 Bytes
/
deno.json
File metadata and controls
47 lines (40 loc) · 892 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
44
45
46
47
{
"compilerOptions": {
"lib": ["deno.ns", "dom", "dom.iterable", "dom.iterableasync"],
"noUncheckedIndexedAccess": true,
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": [
"a",
"body",
"head",
"html",
"img",
"source"
]
},
"exclude": ["**/_fresh/*"],
"fmt": {
"proseWrap": "never",
"useTabs": true
},
"imports": {
"@std/encoding": "jsr:@std/encoding@^1.0.7",
"@std/http": "jsr:@std/http@^1.0.13",
"fresh": "jsr:@fresh/core@^2.0.0-alpha.29",
"preact": "npm:preact@^10.25.4",
"@preact/signals": "npm:@preact/signals@^2.0.1",
"sqlite": "jsr:@db/sqlite@^0.12.0"
},
"lint": {
"rules": {
"tags": ["fresh", "recommended"]
}
},
"tasks": {
"dev": "deno run -A --env --watch=static,route dev.ts",
"build": "deno run -A dev.ts build",
"start": "deno run -A main.ts"
},
"unstable": ["temporal"]
}