Using jest with postgres-meta
I am trying to run the postgres-meta repo from supabase and I followed the instructions in the dockerfile to build the binary, but whenever I run jest I am getting this error, even though my jest configuration clearly contains the required specifications
{
"include": ["src"],
"compilerOptions": {
"incremental": true,
"declaration": true,
"declarationMap": true,
"module": "es2022",
"outDir": "dist",
"rootDir": "src",
"sourceMap": true,
"target": "es2021",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"stripInternal": true
}
}
Could you help me with this please?
{
"include": ["src"],
"compilerOptions": {
"incremental": true,
"declaration": true,
"declarationMap": true,
"module": "es2022",
"outDir": "dist",
"rootDir": "src",
"sourceMap": true,
"target": "es2021",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"stripInternal": true
}
}
Could you help me with this please?
