aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-web/tsconfig.json
blob: cb5f6b138886b07b95f034842eb76e1b7363d828 (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/main/js/**/*"],
  "exclude": ["./build/generated/sources/lezer/*"]
}