1 | {
|
2 | "extends": "../tsconfig.build.json",
|
3 | "compilerOptions": {
|
4 | "outDir": ".",
|
5 | "rootDir": ".",
|
6 | "paths": {
|
7 | "@nestjs/common": ["../common"],
|
8 | "@nestjs/common/*": ["../common/*"],
|
9 | "@nestjs/core": ["../core"],
|
10 | "@nestjs/core/*": ["../core/*"],
|
11 | "@nestjs/websockets": ["../websockets"],
|
12 | "@nestjs/websockets/*": ["../websockets/*"]
|
13 | }
|
14 | },
|
15 | "exclude": ["node_modules", "dist", "test/**/*", "*.spec.ts"],
|
16 | "references": [
|
17 | {
|
18 | "path": "../common/tsconfig.build.json"
|
19 | },
|
20 | {
|
21 | "path": "../core/tsconfig.build.json"
|
22 | },
|
23 | {
|
24 | "path": "../websockets/tsconfig.build.json"
|
25 | }
|
26 | ]
|
27 | }
|