Hello !
I wanted to make my own nest package, to custom the schema nest -generate resource, to make a custom CRUD (that call my real DB service + my basic DTO + remove some lines)
But I don't really know how to do it, do I have to fork the project ?
I C/C the source code for the resource schema, but the imports does not work:
import {
addPackageJsonDependency, -> Module '"@nestjs/schematics"' has no exported member 'addPackageJsonDependency'.ts(2305)
DeclarationOptions,
getPackageJsonDependency, -> Module '"@nestjs/schematics"' has no exported member 'getPackageJsonDependency'.ts(2305)
Location,
mergeSourceRoot,
ModuleDeclarator,
ModuleFinder,
NameParser,
NodeDependencyType, -> Module '"@nestjs/schematics"' has no exported member 'NodeDependencyType'.ts(2305)
normalizeToKebabOrSnakeCase,
ResourceOptions, -> Module '"@nestjs/schematics"' has no exported member 'ResourceOptions'.ts(2305)
} from '@nestjs/schematics';
Thank you !