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