formats.exposed/deno.json

13 lines
309 B
JSON
Raw Normal View History

{
"tasks": {
"typecheck": "deno check **/*.js **/*.ts",
"check-all": "deno fmt --check && deno lint && deno task typecheck && deno test --allow-read"
},
"imports": {
"assert": "https://deno.land/std@0.196.0/testing/asserts.ts"
},
"compilerOptions": {
"lib": ["deno.ns", "dom"]
}
}