PeerTube/client/e2e/tsconfig.json

25 lines
456 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",
2021-09-03 10:27:04 +02:00
"noImplicitAny": false,
"esModuleInterop": true,
2018-05-16 19:59:21 +02:00
"module": "commonjs",
"target": "es5",
2023-07-13 15:49:47 +02:00
"typeRoots": [
"../node_modules/@types",
"../node_modules"
],
2018-05-16 19:59:21 +02:00
"types": [
2021-08-30 16:24:25 +02:00
"node",
2023-05-25 08:46:13 +02:00
"@wdio/globals/types",
2021-08-30 16:24:25 +02:00
"@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
}