-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
25 lines (25 loc) · 1.13 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
{
"lock": false,
"tasks": {
"fmt": "deno fmt --options-single-quote --watch",
"check": "deno fmt --options-single-quote --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"dev": "deno run -A --check --watch=static/,routes/ dev.ts",
"build": "deno run -A --check dev.ts build",
"serve": "deno run -A --check main.ts",
"update": "deno run -A --check -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*", "fresh.gen.ts"],
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"$std/": "https://deno.land/[email protected]/",
"$gfm": "https://deno.land/x/[email protected]/mod.ts",
"remove-markdown": "https://esm.sh/[email protected]"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
}