-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
29 lines (29 loc) · 1.25 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
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"start": "deno run --unstable -A --watch=static/,routes/ dev.ts",
"build": "deno run --unstable -A dev.ts build",
"preview": "deno run --unstable -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"fmt": { "lineWidth": 120, "indentWidth": 4 },
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.5.2/",
"$std/": "https://deno.land/std@0.203.0/",
"@cross/jwt": "jsr:@cross/jwt@^0.2.1",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.1",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.0",
"components/": "./components/",
"db/": "./db/",
"islands/": "./islands/",
"lib/": "./lib/",
"preact": "https://esm.sh/preact@10.18.1",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2",
"preact/": "https://esm.sh/preact@10.18.1/",
"routes/": "./routes/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"exclude": ["**/_fresh/*"]
}