I'm trying to find the way how to specify relative path to the todo folder:
https://github.com/invzbl3/project/tree/main/src/todo
to use it then inside imports of the Module:
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { TodosController } from 'src/todo/todo.controller';
import { TodosModule } from 'src/todo/todo.module';
import { TodosService } from 'src/todo/todo.service';
@Module({
imports: [TodosController, TodosModule, TodosService],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}```
https://github.com/invzbl3/project/blob/main/src/app.module.ts#L9
Can someone tell me, please, how can I specify relative path to the folder to use it in `imports` instead of using import for each file separately.