UNPKG

488 BJSONView Raw
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 }
12 },
13 "exclude": ["node_modules", "dist", "test/**/*", "*.spec.ts"],
14 "references": [
15 {
16 "path": "../common/tsconfig.build.json"
17 },
18 {
19 "path": "../core/tsconfig.build.json"
20 }
21 ]
22}