-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdeno.json
More file actions
34 lines (34 loc) · 744 Bytes
/
deno.json
File metadata and controls
34 lines (34 loc) · 744 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
34
{
"imports": {
"@nic/local-highlight-registry": "jsr:@nic/local-highlight-registry@^0.1.0",
"lume/": "https://deno.land/x/lume@v3.0.9/",
"lume/jsx-runtime": "https://deno.land/x/ssx@v0.1.12/jsx-runtime.ts"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s"
},
"compilerOptions": {
"types": [
"lume/types.ts"
],
"jsx": "react-jsx",
"jsxImportSource": "lume"
},
"license": "Unicode-3.0",
"unstable": [
"temporal",
"fmt-component"
],
"lint": {
"plugins": [
"https://deno.land/x/lume@v3.0.9/lint.ts"
],
"rules": {
"exclude": [
"no-import-prefix"
]
}
}
}