forked from fdorantesm/nestjs-mongodb-hexagonal-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnest-cli.json
More file actions
27 lines (27 loc) · 694 Bytes
/
Copy pathnest-cli.json
File metadata and controls
27 lines (27 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"webpack": true
},
"projects": {
"mongoose-hide-object-id": {
"type": "library",
"root": "libs/mongoose-hide-object-id",
"entryFile": "index",
"sourceRoot": "libs/mongoose-hide-object-id/src",
"compilerOptions": {
"tsConfigPath": "libs/mongoose-hide-object-id/tsconfig.lib.json"
}
},
"id-generator": {
"type": "library",
"root": "libs/id-generator",
"entryFile": "index",
"sourceRoot": "libs/id-generator/src",
"compilerOptions": {
"tsConfigPath": "libs/id-generator/tsconfig.lib.json"
}
}
}
}