aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/typescript/base.json
blob: 2708b2800cdd38ad8f8e4fdb435201f864dc8031 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "$schema": "https://json.schemastore.org/tsconfig",
  "compilerOptions": {
    "target": "ES2022",
    "lib": ["dom", "dom.iterable", "ES2022"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "Bundler",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "moduleDetection": "force",
    "jsx": "preserve",
    "incremental": true,
    "noUncheckedIndexedAccess": false
  },
  "exclude": ["node_modules", "build", "dist", ".next", ".expo"]
}