-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
34 lines (34 loc) · 964 Bytes
/
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
{
"tasks": {
"start": "./examples/main.ts",
"reload": "deno cache --reload **/*.ts jsr:@check/deps",
"check": "deno check **/*.ts **/*.tsx",
"ok": "deno fmt && deno lint && deno task check && deno test && deno publish --dry-run --allow-dirty",
"lock": "rm -f deno.lock && deno task check",
"outdated": "deno run --allow-read=. --allow-net=jsr.io,registry.npmjs.org jsr:@check/deps"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "@http/jsx-stream",
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true
},
"imports": {
"@http/jsx-stream": "jsr:@http/jsx-stream@0.8.0",
"@http/html-stream": "jsr:@http/html-stream@0.8.0",
"@http/token-stream": "jsr:@http/token-stream@0.8.0"
},
"publish": {
"exclude": [
".github",
".vscode",
"deno.lock"
]
},
"workspace": [
"./token_stream",
"./html_stream",
"./jsx_stream",
"./examples"
]
}