Files
eh-downloader/deno.json
2023-05-28 11:44:01 +08:00

21 lines
1.0 KiB
JSON

{
"importMap": "./import_map.json",
"tasks": {
"server-dev": "deno run -A --unstable --watch=static/,routes/,translation/ server-dev.ts",
"test": "deno test --allow-read=./ --allow-net --allow-write=./ --allow-run=tasklist.exe --unstable",
"run": "deno run --allow-read=./ --allow-write=./ --allow-run=tasklist.exe --allow-env=DENO_DEPLOYMENT_ID --allow-net --unstable",
"compile": "deno compile --allow-read=./ --allow-write=./ --allow-run=tasklist.exe --allow-env=DENO_DEPLOYMENT_ID --allow-net --unstable",
"compile_full": "deno compile --allow-read --allow-write --allow-run=tasklist.exe --allow-env=DENO_DEPLOYMENT_ID --allow-net --unstable",
"fetch": "deno run --allow-read=./ --allow-write=./ --allow-net fetch_static_files.ts"
},
"fmt": {
"indentWidth": 4,
"exclude": ["config.json"]
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"lib": ["es2022", "dom", "dom.iterable", "deno.window"]
}
}