-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
69 lines (54 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"lock": false,
"tasks": {
"tunnel" : "ngrok http --subdomain=JSLess --region=us 9000" ,
"init" : "touch Database/Storage.db" ,
"dev" : "bash .github/Tasks/Dev.sh"
},
"lint" : {
"rules" : {
"tags" : [
"fresh" ,
"recommended"
]
}
},
"fmt" : {
"singleQuote" : true
},
"imports" : {
"Encoding" : "jsr:@std/[email protected]" ,
"Async" : "jsr:@std/[email protected]" ,
"HTTP" : "jsr:@std/[email protected]" ,
"Path" : "jsr:@std/[email protected]" ,
"TOML" : "jsr:@std/[email protected]" ,
"ULID" : "jsr:@std/[email protected]" ,
"Preact/Render": "npm:[email protected]" ,
"preact/jsx-runtime" : "npm:[email protected]/jsx-runtime" ,
"preact" : "npm:[email protected]" ,
"Oak" : "jsr:@oak/[email protected]" ,
"Moment" : "npm:[email protected]" ,
"Zod" : "npm:[email protected]" ,
"Misc/Routes" : "./Source/Routes/Misc/mod.ts" ,
"Misc/Async" : "./Source/Misc/AsyncResponse.ts" ,
"Misc/Frame" : "./Source/Misc/Frame/mod.tsx" ,
"Misc/Time" : "./Source/Misc/Time.ts" ,
"UI/Parts" : "./Source/Components/mod.ts" ,
"Framework" : "./Source/Framework/mod.ts" ,
"Database" : "./Source/Database/mod.ts" ,
"Render" : "./Source/Misc/Render/mod.ts" ,
"Routes" : "./Source/Routes/mod.ts" ,
"Dummy" : "./Source/Misc/Dummy/mod.ts" ,
"State" : "./Source/Misc/State.ts"
},
"compilerOptions" : {
"jsxImportSource": "preact" ,
"jsx" : "react-jsx" ,
"lib": [
"deno.unstable" ,
"deno.window" ,
"es2023" ,
"dom"
]
}
}