-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdeno.json
57 lines (57 loc) · 1.94 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"compilerOptions": {
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"tasks": {
"dev": "deno run --unstable-kv -A --watch=src/static/,src/routes/ src/dev.ts",
"cache": "deno cache --reload src/main.ts",
"check": "deno lint && deno fmt && deno check src/main.ts",
"update:apps": "deno run --unstable-kv -REN scripts/update.ts",
"build": "deno run --unstable-kv -A src/dev.ts build",
"preview": "deno run --unstable-kv -A src/main.ts"
},
"lock": false,
"lint": {
"exclude": ["static", "docs", "resources"],
"rules": {
"tags": ["recommended", "fresh"],
"include": ["ban-untagged-todo"]
}
},
"fmt": {
"exclude": ["static", "docs", "resources"],
"useTabs": true,
"indentWidth": 4,
"singleQuote": false,
"semiColons": true,
"proseWrap": "preserve"
},
"imports": {
"@/": "./src/",
"$std/": "https://deno.land/[email protected]/",
"dotenv": "https://deno.land/[email protected]/dotenv/load.ts",
"$fresh/": "https://deno.land/x/[email protected]/",
"fresh-seo": "https://deno.land/x/[email protected]/mod.ts",
"gfm": "https://deno.land/x/[email protected]/mod.ts",
"tabler-icons/": "https://deno.land/x/[email protected]/tsx/",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"ua-parser-js": "https://esm.sh/[email protected]",
"imagescript": "https://esm.sh/[email protected]",
"deno-kv-insights": "https://deno.land/x/[email protected]/mod.ts"
},
"scopes": {},
"exclude": ["**/_fresh/*"]
}