-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
47 lines (47 loc) · 1.21 KB
/
nest-cli.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true
},
"projects": {
"notion": {
"type": "library",
"root": "libs/notion",
"entryFile": "index",
"sourceRoot": "libs/notion/src",
"compilerOptions": {
"tsConfigPath": "libs/notion/tsconfig.lib.json"
}
},
"openai": {
"type": "library",
"root": "libs/openai",
"entryFile": "index",
"sourceRoot": "libs/openai/src",
"compilerOptions": {
"tsConfigPath": "libs/openai/tsconfig.lib.json"
}
},
"airtable": {
"type": "library",
"root": "libs/airtable",
"entryFile": "index",
"sourceRoot": "libs/airtable/src",
"compilerOptions": {
"tsConfigPath": "libs/airtable/tsconfig.lib.json"
}
},
"online-database-interface": {
"type": "library",
"root": "libs/online-database-interface",
"entryFile": "index",
"sourceRoot": "libs/online-database-interface/src",
"compilerOptions": {
"tsConfigPath": "libs/online-database-interface/tsconfig.lib.json"
}
}
}
}