-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
52 lines (52 loc) · 1.29 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
{
"tasks": {
"dev": "deno run -A --watch www/main.ts"
},
"imports": {
"effection": "npm:[email protected]",
"effection-www/": "https://raw.githubusercontent.com/thefrontside/effection/4982887c1677b847d256402e8709f2b1d49437e6/www/",
"revolution": "https://deno.land/x/[email protected]/mod.ts",
"revolution/jsx-runtime": "https://deno.land/x/[email protected]/jsx-runtime.ts",
"bdd": "jsr:@std/testing/bdd",
"expect": "jsr:@std/expect"
},
"compilerOptions": {
"lib": [
"deno.ns",
"dom.iterable",
"dom"
],
"jsx": "react-jsx",
"jsxImportSource": "revolution"
},
"scopes": {
"https://raw.githubusercontent.com/thefrontside/effection/4982887c1677b847d256402e8709f2b1d49437e6/www/": {
"revolution": "https://deno.land/x/[email protected]/mod.ts",
"revolution/jsx-runtime": "https://deno.land/x/[email protected]/jsx-runtime.ts"
}
},
"lint": {
"rules": {
"exclude": [
"prefer-const",
"require-yield"
]
}
},
"workspace": [
"./deno-deploy",
"./task-buffer",
"./tinyexec",
"./websocket"
],
"deploy": {
"project": "aa1dbfaa-d7c1-49d7-b514-69e1d8344f95",
"exclude": [
"**/node_modules"
],
"include": [
"."
],
"entrypoint": "www/main.ts"
}
}