Cristian Pietrobon

Results 14 issues of Cristian Pietrobon

Docker compose ```yml version: '3.1' services: mongo: image: mongo:5.0.10 restart: always ports: - 27017:27017 environment: MONGO_INITDB_ROOT_USERNAME: root MONGO_INITDB_ROOT_PASSWORD: root MONGO_INITDB_DATABASE: db volumes: - ./db/data:/data/db - ./db/config:/data/configdb # - ./db/001_users.js:/docker-entrypoint-initdb.d/001_users.js:ro #...

I'm not sure where the problem is, but i have problem with imported `types` when compiling with webpack. **tsc** works ```typescript PrivateApiController.__type = ['methods', function () { return {}; },...

Refs: #332 ### Summary of changes Supports tsconfig.json extends (Nx monorepo) ### Relinquishment of Rights Please mark following checkbox to confirm that you relinquish all rights of your changes: -...

Monorepo with Nx Project tsconfig.json ```json { "extends": "../../tsconfig.base.json", "files": [], "include": [], "references": [ { "path": "./tsconfig.app.json" }, { "path": "./tsconfig.spec.json" } ] } ``` tsconfig.base.json ```json { "compileOnSave":...

enhancement

The project is a monorepo created with Nx. I'm using ts-patch (ttypescript) to allow transformers globally on the project Is this error related to the local private pkg? Stack ```bash...

bug

Hi, i was making some benchmarks (32GB ram, 1TB nvme) about this project, i see a large difference between cursors and gets (Binary keys/values). like, 1M read/sec for normal random...

```typescript enum UserRole { ADMIN, STAFF } export class UserA { name: string surname: string avatar: string status: string email: string password: string settings: any workers: Array; // kind 0...

Spring boot 3.0.2 app. build with spring-boot-maven-plugin. stack ```bash app_1 | java.io.FileNotFoundException: JAR entry org/bytedeco/cpython/linux-x86_64/lib/pkgconfig/libssl.pc not found in /opt/target/dist.jar app_1 | at org.springframework.boot.loader.jar.JarURLConnection.throwFileNotFound(JarURLConnection.java:175) app_1 | at org.springframework.boot.loader.jar.JarURLConnection.connect(JarURLConnection.java:98) app_1 | at...

enhancement
help wanted

```ts references: Array = []; ``` The error is not very clear, but is does not like that **Array** the way i declared it. ```bash should create an entity -...

needs-replication

Hi, i'm making some parallel requests (local db), let's say 3/4 request to the same table, very basic query: 4x of `select * from user where id = $1` running...