aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.build.json
blob: 0d07a4fc5691b3a35a946d3d8de0669c3f25b430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "target": "ES2022",
    "noEmit": false,
    "emitDeclarationOnly": true,
    "rootDir": "src",
    "outDir": "dist/types",

    // This negates what is set in the extended tsconfig.json
    "skipLibCheck": false,
    "allowSyntheticDefaultImports": false,
    "resolveJsonModule": false
  },
  "include": ["src"]
}