aboutsummaryrefslogtreecommitdiff
path: root/deno.json
blob: 44db6ad84493ebeab2571e72d9c3de987d7d31c9 (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
27
28
29
{
  "compilerOptions": {
    "checkJs": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitReturns": true,
    "noUnusedLocals": false,
    "noUnusedParameters": true,
    "noUncheckedIndexedAccess": false
  },
  "fmt": {
    "files": {
      "exclude": [
        ".git",
        "cov"
      ]
    }
  },
  "lint": {
    "files": {
      "exclude": [
        ".git",
        "cov"
      ]
    }
  },
  "tasks": {
    "test": "deno test --doc --unstable --allow-all --coverage=./cov"
  }
}