1
0
Fork 0
peertube/packages/tests/tsconfig.json

29 lines
632 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./",
"rootDir": "src",
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"paths": {
2023-08-18 08:52:53 +00:00
"@tests/*": [ "src/*" ],
2023-10-04 13:13:25 +00:00
"@server/*": [ "../../server/core/*" ]
}
},
"references": [
{ "path": "../core-utils" },
{ "path": "../ffmpeg" },
{ "path": "../models" },
{ "path": "../node-utils" },
{ "path": "../typescript-utils" },
{ "path": "../server-commands" },
{ "path": "../../server/tsconfig.lib.json" }
],
"include": [
"./src/**/*.ts"
],
"exclude": [
"./fixtures"
]
}