/ deno.json
deno.json
1 { 2 "$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json", 3 "name": "@hyperpolymath/beamdeno", 4 "version": "0.1.0", 5 "license": "AGPL-3.0-or-later", 6 "exports": "./deno/mod.ts", 7 "tasks": { 8 "test": "deno test --allow-net --allow-run", 9 "test:integration": "deno test --allow-net --allow-run integration/", 10 "check": "deno check deno/mod.ts", 11 "fmt": "deno fmt", 12 "lint": "deno lint" 13 }, 14 "fmt": { 15 "indentWidth": 2, 16 "singleQuote": false, 17 "proseWrap": "preserve" 18 }, 19 "lint": { 20 "rules": { 21 "tags": ["recommended"] 22 } 23 }, 24 "compilerOptions": { 25 "strict": true, 26 "noImplicitAny": true 27 } 28 }