Error when trying to generate a migration schema

anyone any ideas to what the problem is? It was working fine yesterday and now it throws an error when I am trying to generate a migration file. I was updating the relationships/adding a new table and when I tried generate a migration file, this error appeared

this is the script i'm running
"generate": "cross-env NODE_ENV=development drizzle-kit generate:pg --config=drizzle.config.ts",

import { Config } from "drizzle-kit";

export default {
  schema: "./src/modules/drizzle/schemas",
  driver: "pg",
  dbCredentials: {
    connectionString: `postgres://${process.env.PG_USER}:${
      process.env.PG_PASSWORD
    }@${process.env.PG_HOST}${
      process.env.NODE_ENV === "docker" ? `:${process.env.PG_PORT}` : ""
    }/${process.env.PG_DATABASE}`,
  },
  out: "./.drizzle",
} satisfies Config;

```
Reading config file '/munchies/server/drizzle.config.ts'
Error: Transform failed with 1 error:

errors: [
{
detail: undefined,
id: '',
location: [Object],
notes: [],
pluginName: '',
text: 'Transforming JavaScript decorators to the configured target environment ("es2021") is not supported yet'
}
],
warnings: []
}
Was this page helpful?