23 lines
518 B
JSON
23 lines
518 B
JSON
{
|
|
"extends": "../tsconfig.build.json",
|
|
"compilerOptions": {
|
|
"outDir": ".",
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"@nestjs/common": ["../common"],
|
|
"@nestjs/common/*": ["../common/*"],
|
|
"@nestjs/websockets": ["../websockets"],
|
|
"@nestjs/websockets/*": ["../websockets/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "test/**/*", "*.spec.ts"],
|
|
"references": [
|
|
{
|
|
"path": "../common/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../websockets/tsconfig.build.json"
|
|
}
|
|
]
|
|
}
|