summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: cdd593c2d7cd5d67887ce9c7ea1cdc159302caf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "compilerOptions": {
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "resolveJsonModule": true,
    "sourceMap": true,
    "composite": true,
    // MONOREPO STUFF
    "incremental": true,
    "target": "ES2020",
    "module": "Node16",
    "declaration": true,
    "moduleResolution": "node16",
  }
}