-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
27 lines (27 loc) · 936 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
{
"tasks": {
"start": "deno run --allow-env --allow-run --allow-net --allow-read --allow-write --location http://localhost:8000 --watch=static/,routes/ dev.ts",
"debug": "deno run --allow-env --allow-run --allow-net --allow-read --allow-write --location http://localhost:8000 --inspect-wait dev.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.3.1/",
"preact": "https://esm.sh/preact@10.15.1",
"preact/": "https://esm.sh/preact@10.15.1/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.0",
"@preact/signals": "https://esm.sh/*@preact/signals@1.1.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.2.3",
"zod": "https://deno.land/x/zod@v3.21.4/mod.ts"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
}
}