Files
supabase/packages/pg-meta/tsconfig.json
Andrew Valleteau eb7efdef7f chore(studio): move Query to pgMeta add tests (#34232)
* chore(studio): move Query to pgMeta add tests

- Move the Query builder from studio to pgMeta
- Add e2e tests over the generated sql to ensure syntax and runtime
  result over pg database
- fix bug with orde by for table with undefined column

* chore: fix query import path

* chore: set ES target for lint

* chore: add github action for pg-meta test package

* chore: add tsconfig to sparse checkout
2025-03-20 19:04:58 +00:00

11 lines
219 B
JSON

{
"extends": "../tsconfig/base.json",
"compilerOptions": {
"module": "ESNext",
"target": "ES2021",
"moduleResolution": "bundler"
},
"include": ["."],
"exclude": ["dist", "build", "node_modules"]
}