diff options
Diffstat (limited to 'deno.json')
| -rw-r--r-- | deno.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/deno.json b/deno.json new file mode 100644 index 0000000..de24001 --- /dev/null +++ b/deno.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "strict": true, + "useUnknownInCatchVariables": true, + "noImplicitOverride": true + }, + "fmt": { + "files": { + "exclude": [ + ".git", + "cov" + ] + } + }, + "lint": { + "files": { + "exclude": [ + ".git", + "cov" + ] + } + }, + "tasks": { + "test": "deno test --doc --unstable --allow-all --coverage=./cov" + } +} |