1
0
Fork 0
peertube/packages/types/tsconfig.json

24 lines
662 B
JSON
Raw Normal View History

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