Milan Barać

Results 33 comments of Milan Barać

@dossy Yes, I tried with `"dotenv": "^17.2.1"`. Let me share those outputs: ```ts dotenv.config(); ``` ``` ~/workspace/demo (next)$ yarn generate yarn run v1.22.22 $ npx tsc --project tsconfig.json && ts-node...

I actually use `generate.ts`, which imports libraries and uses `dotenv` and gets transpiled into `generate.js`: ```ts import cassandra from 'cassandra-driver'; import dotenv from 'dotenv'; import fs from 'fs'; import path...

```ts import { Prisma } from '@prisma/client'; export const softDeleteExtension = Prisma.defineExtension({ name: 'soft-delete-extension', model: { $allModels: { async softDelete( this: M, where: Prisma.Args['where'] ): Promise { const context =...