-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
39 lines (39 loc) · 1.04 KB
/
deno.jsonc
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"lock": {
"frozen": true
},
"compilerOptions": {
"lib": [
"dom",
"dom.asynciterable",
"dom.iterable",
"deno.ns"
],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": ["a", "img", "source", "body", "html", "head"]
},
"exclude": [
"**/.fresh/*"
],
"lint": {
"rules": {
"tags": ["fresh", "recommended"]
}
},
"tasks": {
"check:all": "deno fmt --check && deno lint && deno task check",
"check": "deno check src/**/*.ts src/**/*.tsx",
"dev": "deno run -A --watch=src/static/,src/routes/ src/dev.ts",
"build": "deno run -A src/dev.ts build",
"start": "deno run -A src/main.ts",
"update": "deno run -A -r jsr:@fresh/update ."
},
"imports": {
"@fresh/plugin-tailwind": "jsr:@fresh/plugin-tailwind@^0.0.1-alpha.7",
"@preact/signals": "npm:@preact/signals@^1.2.3",
"@tailwindcss/typography": "npm:@tailwindcss/typography@^0.5.15",
"fresh": "jsr:@fresh/core@^2.0.0-alpha.33",
"preact": "npm:preact@^10.26.6"
}
}