-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
30 lines (30 loc) · 1.14 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
{
"lock": false,
"tasks": {
"test": "deno fmt && deno lint",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno task test && deno run -A --watch=static/,routes/ dev.ts",
"build": "deno task test && deno run -A dev.ts build",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"$fresh/": "https://deno.land/x/fresh/",
"preact": "https://esm.sh/preact",
"preact/": "https://esm.sh/preact/",
"@preact/signals": "https://esm.sh/*@preact/signals",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core",
"tailwindcss": "npm:tailwindcss",
"tailwindcss/": "npm:/tailwindcss/",
"tailwindcss/plugin": "npm:/tailwindcss/plugin.js",
"$std/": "https://deno.land/std/",
"puppeteer": "https://deno.land/x/puppeteer/mod.ts",
"@/": "./",
"@@/": "../"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"nodeModulesDir": true
}