Files
PeerTube/packages/types/tsconfig.dist.json
T

17 lines
304 B
JSON
Raw Normal View History

{
2021-12-14 13:48:13 +01:00
"extends": "./tsconfig.json",
"compilerOptions": {
"typeRoots": [
"node_modules/@types",
"client/node_modules/@types"
],
2021-12-24 13:16:55 +01:00
"baseUrl": "./dist",
"paths": {
"@server/*": [ "server/*" ],
"@shared/*": [ "shared/*" ],
"@client/*": [ "client/*" ]
}
}
}