2022-11-28 10:00:18 -05:00
|
|
|
{
|
2022-12-10 10:27:23 -05:00
|
|
|
"compilerOptions": { "types": ["./store"], "checkJs": true },
|
|
|
|
"importMap": "./deno.map.json",
|
|
|
|
"fmt": {
|
|
|
|
"options": {
|
|
|
|
"lineWidth": 256
|
2022-11-28 10:00:18 -05:00
|
|
|
}
|
2022-12-10 10:27:23 -05:00
|
|
|
},
|
|
|
|
"tasks": {
|
|
|
|
"dev": "deno task serve & deno task test",
|
|
|
|
"fmt": "deno fmt --watch",
|
|
|
|
"serve": "deno run -A --unstable --no-check https://deno.land/std@0.167.0/http/file_server.ts",
|
|
|
|
"test": "deno test store.test.ts --watch --no-lock --no-check"
|
|
|
|
}
|
|
|
|
}
|