aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: d32cca0aaaa41d6db0bebbaee93edbe740adf9bf (plain)
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
30
31
32
33
34
35
36
{
  "include": [
    "*",
    "tests/e2e/**/*",
    "tools/**/*",
    "web_src/js/**/*",
  ],
  "compilerOptions": {
    "target": "es2020",
    "module": "esnext",
    "moduleResolution": "bundler",
    "lib": ["dom", "dom.iterable", "dom.asynciterable", "esnext"],
    "allowImportingTsExtensions": true,
    "allowJs": true,
    "allowSyntheticDefaultImports": true,
    "alwaysStrict": true,
    "esModuleInterop": true,
    "isolatedModules": true,
    "noEmit": true,
    "resolveJsonModule": true,
    "skipLibCheck": true,
    "verbatimModuleSyntax": true,
    "stripInternal": true,
    "strict": false,
    "strictFunctionTypes": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noPropertyAccessFromIndexSignature": false,
    "exactOptionalPropertyTypes": false,
    "sourceMap": true,
    "types": [
      "vitest/globals",
      "./web_src/js/globals.d.ts",
    ],
  }
}