summaryrefslogtreecommitdiff
path: root/tests/tsconfig.json
blob: 4daff463361b49b33c3e539c2e9d0ea00a5e1b6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "compilerOptions": {
    "target": "ES6",
    "lib": ["ES2015", "ES2020.BigInt", "DOM"],
    "moduleResolution": "Node",
    "noImplicitAny": true,
    "strict": true,
    "noUnusedParameters": false,
    "noUnusedLocals": false,
    "noImplicitReturns": true,
    "strictNullChecks": true,
    "baseUrl": ".",
    "noEmit": false,
    "outDir": "./ts"
  },
  "include": [ "ts/**/*.ts" ],
  "exclude": []
}