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