-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
37 lines (37 loc) · 1.06 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
{
"tasks": {
"start": "deno run -A --watch=static/,routes/ dev.ts",
"npm:add": "deno run -A https://esm.sh/v99 add",
"npm:update": "deno run -A https://esm.sh/v99 update",
"npm:remove": "deno run -A https://esm.sh/v99 remove"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"lint": {
"rules": {
"include": [
"eqeqeq",
"no-const-assign"
]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2
},
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"@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]/",
"twind": "https://esm.sh/[email protected]",
"twind/": "https://esm.sh/[email protected]/",
"spotify-web-api-js": "https://esm.sh/v99/[email protected]"
},
"scopes": {}
}