aboutsummaryrefslogtreecommitdiff
path: root/deno.json
blob: de24001534015b0d39df1cc7881c648ab7c72c5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"
  }
}