aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/tsconfig.json
blob: 14c3e0c89eff257ff5875cf66f462568168e906c (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
27
{
  "extends": "../../config/tsconfig.base.json",
  "compilerOptions": {
    "noEmit": true,
    "jsx": "react",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "types": [
      "vite/client"
    ]
  },
  "references": [
    {
      "path": "../shared/tsconfig.build.json"
    }
  ],
  "include": [
    "src/**/*.ts",
    "src/**/*.tsx",
    "types/**/*.d.ts",
    ".eslintrc.cjs",
    "vite.config.js"
  ]
}