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