This repository has been archived by the owner on Sep 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.jsonc
47 lines (47 loc) · 1.47 KB
/
deno.jsonc
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
{
"exclude": ["**/_fresh/*"],
"lock": false,
"tasks": {
"cache:deps": "deno cache **/deps/**/*.ts",
"cli:install:dev": "deno install -Arfg -n netzo-dev lib/cli/netzo.ts",
"test": "deno test -A --parallel --coverage=./cov",
"check:types": "deno check lib/**/*.ts && deno check lib/**/*.tsx",
"ok": "deno fmt --check && deno lint && deno task check:types && deno task test",
"deploy": "deno run --allow-env --allow-net --allow-read scripts/deploy-templates.ts",
"release": "deno run --allow-run --allow-read tasks/release.ts",
"cov": "deno coverage ./cov/ --lcov --exclude='test.ts|testdata' > cov.lcov"
},
"unstable": ["cron", "kv", "temporal"],
"lint": {
"exclude": ["./lib/deps/"],
"rules": { "tags": ["fresh", "recommended"] }
},
"fmt": { "lineWidth": 100 },
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns", "deno.unstable"],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxImportSourceTypes": "npm:@types/[email protected]",
"jsxPrecompileSkipElements": [
"a",
"img",
"source",
"body",
"html",
"head",
"title",
"link",
"style",
"meta"
]
},
"imports": {
"@/": "./",
"netzo/": "./lib/",
"fresh/": "https://deno.land/x/[email protected]/",
"preact": "npm:[email protected]",
"react": "npm:[email protected]/compat",
"react-dom": "npm:[email protected]/compat",
"@preact/signals": "npm:@preact/[email protected]"
}
}