-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
80 lines (80 loc) · 1.67 KB
/
deno.json
File metadata and controls
80 lines (80 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"nodeModulesDir": "manual",
"tasks": {
"check": "deno fmt --check . && deno lint . && deno check",
"dev": "vite",
"build": "vite build",
"start": "deno serve -P _fresh/server.js",
"update": "deno run -A -r jsr:@fresh/update ."
},
"test": {
"permissions": {
"env": true
}
},
"permissions": {
"default": {
"env": true,
"read": ["_fresh"],
"net": ["*.github.com", "*.windows.net"]
}
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
],
"include": [
"no-console",
"verbatim-module-syntax"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"@/": "./",
"@david/service-store": "jsr:@david/service-store@^0.3.1",
"@std/assert": "jsr:@std/assert@^1.0.16",
"@std/cache": "jsr:@std/cache@^0.2.1",
"@zip-js/zip-js": "jsr:@zip-js/zip-js@^2.8.8",
"fresh": "jsr:@fresh/core@^2.2.0",
"preact": "npm:preact@^10.27.2",
"@preact/signals": "npm:@preact/signals@^2.5.0",
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.0.8",
"vite": "npm:vite@^7.1.3",
"tailwindcss": "npm:tailwindcss@^4.1.10",
"@tailwindcss/vite": "npm:@tailwindcss/vite@^4.1.12"
},
"compilerOptions": {
"lib": [
"dom",
"dom.asynciterable",
"dom.iterable",
"deno.ns"
],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": [
"a",
"img",
"source",
"body",
"html",
"head",
"title",
"meta",
"script",
"link",
"style",
"base",
"noscript",
"template"
],
"types": [
"vite/client"
]
}
}