-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.jsonc
More file actions
33 lines (33 loc) · 835 Bytes
/
deno.jsonc
File metadata and controls
33 lines (33 loc) · 835 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
{
"exclude": [
"doc/assets/data",
"render/assets",
"_site",
"__snapshots__"
],
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable -A -",
"build": "deno task lume",
"serve": "deno task lume -s",
"test": "deno test --parallel", // TODO: also do doctests
"test:typeless": "deno task test --no-check",
"snapshot": "deno task test:typeless --allow-read --allow-write"
},
"fmt": {
"semiColons": false,
"useTabs": true,
"proseWrap": "never"
},
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"exactOptionalPropertyTypes": true,
"jsx": "precompile",
"jsxImportSource": "npm:preact",
"types": ["./render/main.d.ts", "lume/types.ts"]
},
"imports": {
"lume/": "https://deno.land/x/lume@v2.0.3/",
"https://raw.githubusercontent.com/daangn/stackgraph/main/": "./"
}
}