PeerTube/scripts/tsconfig.json

17 lines
385 B
JSON
Raw Normal View History

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