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

28 lines
497 B
JSON
Raw Normal View History

2018-05-16 13:59:21 -04:00
{
2021-08-17 08:01:51 -04:00
"extends": "../tsconfig.json",
2018-05-16 13:59:21 -04:00
"compilerOptions": {
"outDir": "../out-tsc/app",
2021-09-03 04:27:04 -04:00
"noImplicitAny": false,
"esModuleInterop": true,
2018-05-16 13:59:21 -04:00
"module": "commonjs",
2024-06-27 05:48:03 -04:00
"target": "ES2015",
2023-07-13 09:49:47 -04:00
"typeRoots": [
"../node_modules/@types",
"../node_modules"
],
2018-05-16 13:59:21 -04:00
"types": [
2021-08-30 10:24:25 -04:00
"node",
2023-05-25 02:46:13 -04:00
"@wdio/globals/types",
2021-08-30 10:24:25 -04:00
"@wdio/mocha-framework",
"expect-webdriverio"
2018-05-16 13:59:21 -04:00
]
2021-08-30 10:24:25 -04:00
},
2024-06-27 05:48:03 -04:00
"ts-node": {
"files": true
},
2021-08-30 10:24:25 -04:00
"include": [
"src/**/*.ts",
"./*.ts"
]
2021-08-17 08:01:51 -04:00
}