aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/tsconfig.json
blob: 1291601c9e3f15daf0521f8dc6c0a1de2b6a0958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "outDir": "../out-tsc/app",
    "noImplicitAny": false,
    "esModuleInterop": true,
    "module": "commonjs",
    "target": "es5",
    "typeRoots": [
      "../node_modules/@types",
      "../node_modules"
    ],
    "types": [
      "node",
      "@wdio/globals/types",
      "@wdio/mocha-framework",
      "expect-webdriverio"
    ]
  },
  "include": [
    "src/**/*.ts",
    "./*.ts"
  ]
}