X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fe2e%2Ftsconfig.json;h=c72e1ed4ccdaf2fd8f8500794b61135fd0083121;hb=e4d9696af5927af86943e551d6d88346494ae9bd;hp=77d311e88d04e98370fe36d1b6c9798e9e96b477;hpb=9df52d660feb722404be00a50f3c8a612bec1c15;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/e2e/tsconfig.json b/client/e2e/tsconfig.json index 77d311e88..c72e1ed4c 100644 --- a/client/e2e/tsconfig.json +++ b/client/e2e/tsconfig.json @@ -2,12 +2,19 @@ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/app", + "noImplicitAny": false, + "esModuleInterop": true, "module": "commonjs", "target": "es5", "types": [ - "jasmine", - "jasminewd2", - "node" + "node", + "webdriverio/async", + "@wdio/mocha-framework", + "expect-webdriverio" ] - } + }, + "include": [ + "src/**/*.ts", + "./*.ts" + ] }