PeerTube/scripts/tsconfig.json

17 lines
385 B
JSON
Raw Permalink Normal View History

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
2023-08-18 07:12:32 -05:00
"outDir": "../dist/scripts",
"paths": {
2024-02-21 08:43:15 -06:00
"@server/*": [ "../server/core/*" ]
2023-08-18 07:12:32 -05:00
}
},
"references": [
{ "path": "../packages/core-utils" },
{ "path": "../packages/models" },
{ "path": "../packages/node-utils" },
{ "path": "../packages/server-commands" },
{ "path": "../server" }
]
}