audiogram-beta/deno.json

11 lines
391 B
JSON
Raw Normal View History

2022-11-28 10:00:18 -05:00
{
2022-12-04 16:21:13 -05:00
"compilerOptions": {"types":["/store.d.ts"]},
2022-12-05 09:55:34 -05:00
"lint": {"files": {"include": ["src/"]}},
"fmt": {"files": {"include": ["src/"]}},
2022-11-28 10:00:18 -05:00
"tasks":
{
2022-11-28 18:42:41 -05:00
"fs": "deno run -A --no-lock https://deno.land/std@0.166.0/http/file_server.ts",
2022-12-04 16:19:22 -05:00
"test": "deno test --no-lock --watch store.test.js",
"test-debug": "deno test --no-lock --inspect-brk store.test.js"
2022-11-28 10:00:18 -05:00
}
}