-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
33 lines (33 loc) · 933 Bytes
/
deno.jsonc
File metadata and controls
33 lines (33 loc) · 933 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
{
"tasks": {
"run": "deno run --allow-all src/main.ts",
"build": "deno compile --allow-all --output odin src/main.ts"
},
"compilerOptions": {
"strict": true
},
"fmt": {
"exclude": ["backend/"]
},
"lint": {
"exclude": ["backend/"]
},
"nodeModulesDir": "auto",
"imports": {
// Deno Standard Library
"@std/encoding": "jsr:@std/encoding@^1.0.0",
"@std/fmt": "jsr:@std/fmt@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/log": "jsr:@std/log@^0.224.0",
"@std/toml": "jsr:@std/toml@^1.0.0",
// Deno Third Party Modules
"@cliffy/ansi": "jsr:@cliffy/ansi@^1.0.0-rc.8",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.8",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.8",
"@cliffy/table": "jsr:@cliffy/table@^1.0.0-rc.8",
// esm CDN
"typescript": "https://esm.sh/typescript",
// npm Registry Packages
"jsonata": "npm:jsonata@^2.0.0"
}
}