1
0
Fork 0
peertube/client/e2e/tsconfig.json

21 lines
372 B
JSON
Raw Normal View History

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