mirror of https://github.com/Chocobozzz/PeerTube
24 lines
662 B
JSON
24 lines
662 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"stripInternal": true,
|
|
"removeComments": false,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./dist/",
|
|
"baseUrl": "./src/",
|
|
"rootDir": "./src/",
|
|
"tsBuildInfoFile": "./dist/tsconfig.server.types.tsbuildinfo",
|
|
"paths": {
|
|
"@server/*": [ "../../../server/*" ],
|
|
"@shared/*": [ "../../../shared/*" ],
|
|
"@client/*": [ "../../../client/src/*" ]
|
|
}
|
|
},
|
|
"references": [
|
|
{ "path": "../../shared/tsconfig.types.json" },
|
|
{ "path": "../../server/tsconfig.types.json" },
|
|
{ "path": "./src/client/tsconfig.json" }
|
|
],
|
|
"files": ["./src/index.ts"]
|
|
}
|