PeerTube/scripts/tsconfig.json

17 lines
384 B
JSON
Raw Normal View History

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
2023-08-18 14:12:32 +02:00
"outDir": "../dist/scripts",
"paths": {
2023-10-04 15:13:25 +02:00
"@server/*": [ "./server/core/*" ]
2023-08-18 14:12:32 +02:00
}
},
"references": [
{ "path": "../packages/core-utils" },
{ "path": "../packages/models" },
{ "path": "../packages/node-utils" },
{ "path": "../packages/server-commands" },
{ "path": "../server" }
]
}