mirror of https://github.com/Chocobozzz/PeerTube
21 lines
447 B
JSON
21 lines
447 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@server/*": [ "server/*" ],
|
|
"@shared/*": [ "shared/*" ]
|
|
},
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"references": [
|
|
{ "path": "./shared" },
|
|
{ "path": "./server" },
|
|
{ "path": "./scripts" }
|
|
],
|
|
"files": [ "server.ts", "server/types/express.d.ts", "server/types/lib.d.ts" ]
|
|
}
|