aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 388a8f79c31304fdf2a5036d9f9f17aae817f9a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "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",
    // Ignore the generated API documentation
    "docs/api",
    // required for the signature related tests on macOS #2280
    "test/scripts/apidocs/temp"
  ]
}