b8fa3e8c73
fix guide examples and add types package readme refactor(tsconfig): move back base tsconfig to base directory
21 lines
415 B
JSON
21 lines
415 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@server/*": [ "server/*" ],
|
|
"@shared/*": [ "shared/*" ]
|
|
},
|
|
"typeRoots": [
|
|
"server/typings",
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"references": [
|
|
{ "path": "./shared" },
|
|
{ "path": "./server" },
|
|
{ "path": "./scripts" }
|
|
],
|
|
"files": ["server.ts"]
|
|
}
|