@koalarx/nest-cli
Version:
CLI para criação de projetos utilizando Koala Nest
36 lines (35 loc) • 820 B
JSON
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"monorepo": true,
"projects": {
"prisma": {
"type": "library",
"root": "prisma/generated",
"entryFile": "client",
"sourceRoot": "./",
"compilerOptions": {
"tsConfigPath": "tsconfig.prisma.json"
}
},
"app": {
"type": "application",
"root": "src",
"entryFile": "../dist/host/main",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true,
"tsConfigPath": "tsconfig.build.json",
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": false,
"introspectComments": true
}
}
]
}
}
}
}