1
0
Fork 0
peertube/server/tsconfig.json

26 lines
550 B
JSON
Raw Normal View History

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