-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
39 lines (39 loc) · 1.35 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
31
32
33
34
35
36
37
38
39
{
"lock": false,
"tasks": {
"start": "deno run -A --unstable --watch=static/,routes/ dev.ts",
"fmt": "deno fmt",
"lint": "deno lint",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"fmt": {
"indentWidth": 4,
"lineWidth": 80,
"semiColons": true,
"singleQuote": false,
"useTabs": true,
"proseWrap": "always"
},
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact-render-to-string": "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]/",
"@/": "./",
"database": "./components/Database/index.ts",
"database/": "./components/Database/",
"utils": "./components/Utils/index.ts",
"@twind/core": "https://esm.sh/@twind/[email protected]",
"@twind/preset-tailwind": "https://esm.sh/@twind/[email protected]/",
"@twind/preset-autoprefix": "https://esm.sh/@twind/[email protected]/"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"]
}