aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.json
blob: 35d0d164ac441345e25a12a321f5da25db27d0d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "extends": "./tsconfig.base.json",
  "compilerOptions": {
    "jsx": "react-jsx",
    "lib": ["DOM", "DOM.Iterable", "ES2022"],
    "types": ["vite/client", "vite-plugin-pwa/client"]
  },
  "include": [
    "src",
    "types"
  ],
  "exclude": [
    "src/xtext/BackendConfig.ts",
    "types/node"
  ],
  "references": [
    { "path": "./tsconfig.node.json" },
    { "path": "./tsconfig.shared.json" }
  ]
}