aboutsummaryrefslogtreecommitdiffstats
path: root/packages/preload/tsconfig.json
blob: 49f223a1ad31c9564dd2d754e23375c83d11a45a (plain) (blame)
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
{
  "extends": "../../tsconfig.json",
  "compilerOptions": {
    "composite": true,
    "declarationDir": "dist-types",
    "emitDeclarationOnly": true,
    "rootDir": "src",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "types": [
      "@types/jest",
      "vite/client"
    ]
  },
  "references": [
    {
      "path": "../shared"
    }
  ],
  "include": [
    "src/**/*.ts"
  ]
}