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