Does introspect only generate schema in the "out" (./drizzle) directory?

My config looks like this:
export default defineConfig({
    dialect: 'postgresql',
    schema: './src/lib/server/db/schema.ts',
    dbCredentials: {
        url: process.env.POSTGRES_URL
    },
    verbose: true,
    strict: true,
})

But if I run introspect, it always generates in ./drizzle
Am I doing something wrong or is this expected?
Was this page helpful?