nest-autocrud/nest-cli.json

29 lines
689 B
JSON
Raw Normal View History

2024-10-26 08:35:59 +00:00
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true
},
"projects": {
2024-10-26 10:41:36 +00:00
"skeleton": {
2024-10-26 08:35:59 +00:00
"type": "library",
2024-10-26 10:41:36 +00:00
"root": "libs/skeleton",
2024-10-26 08:35:59 +00:00
"entryFile": "index",
2024-10-26 10:41:36 +00:00
"sourceRoot": "libs/skeleton/src",
2024-10-26 08:35:59 +00:00
"compilerOptions": {
2024-10-26 10:41:36 +00:00
"tsConfigPath": "libs/skeleton/tsconfig.lib.json"
2024-10-26 08:35:59 +00:00
}
2024-10-26 12:15:42 +00:00
},
"prisma": {
"type": "library",
"root": "libs/prisma",
"entryFile": "index",
"sourceRoot": "libs/prisma/src",
"compilerOptions": {
"tsConfigPath": "libs/prisma/tsconfig.lib.json"
}
2024-10-26 08:35:59 +00:00
}
}
}