silverbullet/deno.json

14 lines
616 B
JSON
Raw Normal View History

2022-10-03 23:36:21 +08:00
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"]
},
"importMap": "import_map.json",
"tasks": {
2022-10-06 17:31:49 +08:00
"test": "deno test -A --unstable",
2022-10-06 21:14:21 +08:00
"watch": "deno run -A build.ts",
2022-10-08 22:29:43 +08:00
"server": "deno run -A --unstable --watch server/server.ts",
"plugs": "deno run -A --unstable plugos/bin/plugos-bundle.ts --dist plugs/dist --exclude=https://esm.sh/handlebars,https://deno.land/std@0.158.0/encoding/yaml.ts plugs/*/*.plug.yaml",
"compile": "deno compile --output silverbullet --importmap import_map.json -A --unstable server/server.ts"
2022-10-03 23:36:21 +08:00
}
}