aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/tsconfig.sonar.json
blob: 1cc74f23906b0468efd446bf49dad6fd99ec9461 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "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,
    "noEmit": true
  },
  "include": ["./src/main/js/**/*"],
  "exclude": ["./src/main/js/xtext/**/*"]
}