-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 767 Bytes
/
deno.json
File metadata and controls
35 lines (35 loc) · 767 Bytes
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
{
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts",
"dev": "deno run --watch --allow-all main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@std/http": "jsr:@std/http@^1.0.12",
"@vanilla-extract/css": "npm:@vanilla-extract/css@^1.17.0",
"@vanilla-extract/esbuild-plugin": "npm:@vanilla-extract/esbuild-plugin@^2.3.13"
},
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns",
"deno.unstable"
]
},
"fmt": {
"exclude": [
"node_modules",
"dist",
"public"
],
"include": [
"src/**/*.ts"
],
"lineWidth": 120,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "always"
}
}