mirror of https://github.com/Chocobozzz/PeerTube
25 lines
456 B
JSON
25 lines
456 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../out-tsc/app",
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"typeRoots": [
|
|
"../node_modules/@types",
|
|
"../node_modules"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"@wdio/globals/types",
|
|
"@wdio/mocha-framework",
|
|
"expect-webdriverio"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"./*.ts"
|
|
]
|
|
}
|