new-tree-system/deno.json

15 lines
430 B
JSON
Raw Permalink Normal View History

2022-12-06 15:53:12 -05:00
{
"importMap": "./deno.map.json",
"compilerOptions": {
2022-12-09 10:32:55 -05:00
"types": ["./ts/types.d.ts"],
2022-12-06 15:53:12 -05:00
"lib": ["deno.window", "dom"],
"checkJs": true
},
"tasks": {
"dev": "deno task fmt & deno task serve & deno task test",
2022-12-09 10:32:55 -05:00
"fmt": "deno fmt --watch",
"serve": "deno run -A --unstable --no-check https://deno.land/std@0.167.0/http/file_server.ts",
2022-12-06 15:53:12 -05:00
"test": "deno test ts/test.ts --watch --no-lock --no-check"
}
}