1
0
Fork 0
peertube/types/tsconfig.json

24 lines
580 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"stripInternal": true,
"removeComments": false,
"emitDeclarationOnly": true,
"outDir": "./dist/",
"baseUrl": "./src/",
"rootDir": "./src/",
"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"],
}