PeerTube/client/e2e/tsconfig.json

19 lines
315 B
JSON
Raw Normal View History

2018-05-16 19:59:21 +02:00
{
2021-08-17 14:01:51 +02:00
"extends": "../tsconfig.json",
2018-05-16 19:59:21 +02:00
"compilerOptions": {
"outDir": "../out-tsc/app",
"module": "commonjs",
"target": "es5",
"types": [
2021-08-30 16:24:25 +02:00
"node",
"webdriverio/async",
"@wdio/mocha-framework",
"expect-webdriverio"
2018-05-16 19:59:21 +02:00
]
2021-08-30 16:24:25 +02:00
},
"include": [
"src/**/*.ts",
"./*.ts"
]
2021-08-17 14:01:51 +02:00
}