mirror of https://github.com/Chocobozzz/PeerTube
Mirror of https://github.com/Chocobozzz/PeerTube
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
856 B
34 lines
856 B
{ |
|
"extends": "./tsconfig.base.json", |
|
"compilerOptions": { |
|
"outDir": "./dist/", |
|
"baseUrl": "./", |
|
"paths": { |
|
"@server/*": [ "server/*" ] |
|
}, |
|
"typeRoots": [ |
|
"node_modules/@types" |
|
] |
|
}, |
|
"include": [ |
|
"./server.ts", |
|
"server/**/*.ts", |
|
"packages/**/*.ts", |
|
"apps/**/*.ts", |
|
"scripts/**/*.ts" |
|
], |
|
"references": [ |
|
{ "path": "./server" }, |
|
{ "path": "./scripts" }, |
|
{ "path": "./apps/peertube-runner" }, |
|
{ "path": "./apps/peertube-cli" }, |
|
{ "path": "./packages/core-utils" }, |
|
{ "path": "./packages/ffmpeg" }, |
|
{ "path": "./packages/transcription-devtools" }, |
|
{ "path": "./packages/models" }, |
|
{ "path": "./packages/node-utils" }, |
|
{ "path": "./packages/server-commands" }, |
|
{ "path": "./packages/transcription" }, |
|
{ "path": "./packages/typescript-utils" } |
|
] |
|
}
|
|
|