-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
53 lines (53 loc) · 1.62 KB
/
deno.jsonc
File metadata and controls
53 lines (53 loc) · 1.62 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
{
"compilerOptions": {
"allowJs": true,
"lib": [
"deno.window"
],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"strict": true
},
"nodeModulesDir": true,
"importMap": "./import_map.json",
"imports": {
"tailwindcss": "npm:tailwindcss@3",
"tailwindcss-animate": "npm:tailwindcss-animate@1.0.7",
"hono/": "https://deno.land/x/hono@v4.3.11/",
"hono/html.ts": "https://deno.land/x/hono@v4.3.11/helper/html/index.ts",
"hono/jsx-renderer.ts": "https://deno.land/x/hono@v4.3.11/middleware/jsx-renderer/index.ts",
"hono/jsx/index.ts": "https://deno.land/x/hono@v4.3.11/jsx/index.ts",
"hono/middleware.ts": "https://deno.land/x/hono@v4.3.11/middleware.ts",
"hono/mod.ts": "https://deno.land/x/hono@v4.3.11/mod.ts",
"hono/utils/html.ts": "https://deno.land/x/hono@v4.3.11/utils/html.ts",
"std/": "https://deno.land/std@0.224.0/"
},
"tasks": {
"dev": "deno run -A npm:tailwindcss@3 -c tailwind.config.cjs -i ./static/input.css -o ./static/style.css && deno run --allow-net --allow-read --allow-env --allow-write --watch src/main.tsx",
"tailwind": "deno run -A npm:tailwindcss@3 -c tailwind.config.cjs -i ./static/input.css -o ./static/style.css --watch"
},
"deploy": {
"project": "YOUR_PROJECT_ID_HERE",
"entrypoint": "src/main.tsx",
"exclude": [
"node_modules/**",
"tailwind.config.cjs",
"static/input.css"
]
},
"lint": {
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"options": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"singleQuote": true
}
}
}