forked from denoland/fresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
26 lines (26 loc) · 968 Bytes
/
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
{
"lock": false,
"tasks": {
"test": "deno test -A --parallel --trace-ops",
"fixture": "deno run -A --watch=static/,routes/ tests/fixture/dev.ts",
"www": "deno task --cwd=www start",
"screenshot": "deno run -A www/utils/screenshot.ts",
"check:types": "deno check **/*.ts && deno check **/*.tsx",
"ok": "deno fmt --check && deno lint && deno task check:types && deno task test",
"install-puppeteer": "PUPPETEER_PRODUCT=chrome deno run -A --unstable https://deno.land/x/[email protected]/install.ts && PUPPETEER_PRODUCT=firefox deno run -A --unstable https://deno.land/x/[email protected]/install.ts",
"test:www": "deno test -A tests/www/",
"manifests": "deno run -A genAllManifest.ts"
},
"exclude": [
"**/_fresh/*",
"**/tmp/*"
],
"importMap": "./.vscode/import_map.json",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"lint": {
"rules": { "exclude": ["no-window"] }
}
}