-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
40 lines (40 loc) · 1.56 KB
/
deno.json
File metadata and controls
40 lines (40 loc) · 1.56 KB
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
{
"lock": false,
"test": { "exclude": ["demo"] },
"exclude": ["demo/fresh.gen.ts", "**/_fresh/*"],
"tasks": {
"start": "deno run -A --watch=static/,routes/ ./demo/dev.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"check": "deno fmt --check && deno lint && deno task check:imports",
"check:imports": "deno run --allow-read --allow-env=TS_ETW_MODULE_PATH tools/check_imports.ts",
"test": "deno test --allow-read --allow-env --allow-net=esm.sh,deno.land --allow-run=deno --doc --location=http://localhost:3000",
"build": "deno run -A demo/dev.ts build",
"preview": "deno run -A demo/main.ts"
},
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"twind": "https://esm.sh/[email protected]",
"twind/": "https://esm.sh/[email protected]/",
"$std/": "https://deno.land/[email protected]/",
"$/": "./demo/",
"🏝️/": "./demo/islands/",
"🗺/": "./demo/routes/",
"⚫/": "./demo/core/",
"🔧/": "./demo/services/",
"$fresh-testing-library": "./mod.ts",
"$fresh-testing-library/": "./",
"$gfm": "jsr:@deno/[email protected]",
"msw": "npm:[email protected]"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"fmt": {
"exclude": ["demo/static/*"]
},
"lint": {
"rules": { "include": ["no-console"], "tags": ["fresh", "recommended"] }
}
}