aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/tsconfig.json
blob: 8186016873dee81713d198a9eddb912cacb49f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "compilerOptions": {
    "allowJs": true,
    "checkJs": false,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noImplicitAny": true,
    "strict": true,
    "target": "es5",
    "jsx": "react",
    // remove "es2015.promise", "es2015.iterable" when upgrading to TypeScript 2.5
    // see https://github.com/Microsoft/TypeScript/issues/16017
    "lib": ["es2015.promise", "es2015.iterable", "es2017", "dom"],
    "module": "esnext",
    "moduleResolution": "node",
    "typeRoots": ["./src/main/js/typings", "./node_modules/@types"]
  },
  "include": ["./src/main/js/**/*"]
}