aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: c8ffb86232445466cc73a9a126975f063f52bc9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "compilerOptions": {
    "target": "ESNext",
    "moduleResolution": "Bundler",
    "module": "ESNext",
    "strict": true,
    "noEmit": true,
    "stripInternal": true,
    "verbatimModuleSyntax": true,
    "skipLibCheck": true,
    "allowSyntheticDefaultImports": true,
    "resolveJsonModule": true
  },
  "exclude": [
    "node_modules",
    "dist",
    // required for the signature related tests on macOS #2280
    "test/scripts/apidocs/temp"
  ]
}