PeerTube/types/tsconfig.json

24 lines
644 B
JSON
Raw Normal View History

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"stripInternal": true,
"removeComments": false,
"emitDeclarationOnly": true,
"outDir": "./dist/",
"baseUrl": "./src/",
"rootDir": "./src/",
2021-12-24 13:16:55 +01:00
"tsBuildInfoFile": "./dist/tsconfig.server.types.tsbuildinfo",
"paths": {
"@server/*": [ "../../server/*" ],
"@shared/*": [ "../../shared/*" ],
2021-12-24 13:16:55 +01:00
"@client/*": [ "../../client/src/*" ]
}
},
"references": [
{ "path": "../shared/tsconfig.types.json" },
{ "path": "../server/tsconfig.types.json" },
{ "path": "./src/client/tsconfig.json" }
],
2021-12-24 13:16:55 +01:00
"files": ["./src/index.ts"]
}