1
0
Fork 0
peertube/server/tsconfig.json

26 lines
550 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../dist",
"baseUrl": "../",
"rootDir": ".",
"tsBuildInfoFile": "../dist/.tsbuildinfo",
"paths": {
"@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"
]
}