aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/tsconfig.json
blob: 94c357c56dfdd73d8c58b2ff421dcb2e7eab605b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "compilerOptions": {
    "target": "es2020",
    "module": "esnext",
    "moduleResolution": "node",
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "jsx": "react",
    "strict": true,
    "noImplicitOverride": true,
    "noImplicitReturns": true,
    "exactOptionalPropertyTypes": false,
    "noEmit": true,
    "skipLibCheck": true
  },
  "include": ["./src/**/*"],
  "exclude": ["./build/generated/sources/lezer/*"]
}