Skip to content

Commit 019fdf0

Browse files
yharaskrikDominikPieper
authored andcommitted
refactor(nest): add support for nest cli
1 parent f07a86d commit 019fdf0

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

nest-cli.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"collection": "@nestjs/schematics",
3+
"monorepo": true,
4+
"compilerOptions": {},
5+
"projects": {
6+
"in-memory-db": {
7+
"type": "library",
8+
"root": "packages/in-memory-db",
9+
"entryFile": "index",
10+
"sourceRoot": "packages/in-memory-dbt/src",
11+
"compilerOptions": {
12+
"tsConfigPath": "packages/in-memory-db/tsconfig.lib.json"
13+
}
14+
},
15+
"spectator": {
16+
"type": "library",
17+
"root": "packages/spectator",
18+
"entryFile": "index",
19+
"sourceRoot": "packages/spectator/src",
20+
"compilerOptions": {
21+
"tsConfigPath": "packages/spectator/tsconfig.lib.json"
22+
}
23+
}
24+
}
25+
}

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"rxjs": "~6.6.3"
4343
},
4444
"devDependencies": {
45+
"@nestjs/cli": "^7.5.4",
4546
"@nestjs/schematics": "^7.2.7",
4647
"@nestjs/testing": "^7.6.11",
4748
"@nrwl/cli": "11.2.12",

0 commit comments

Comments
 (0)