mirror of
https://github.com/supabase/supabase.git
synced 2026-05-23 19:13:13 +08:00
* Revert "Feat/sql editor support bulk deletes (#20927)"
This reverts commit 27c2cff395.
* ci: Autofix updates from GitHub workflow
* Lint
---------
Co-authored-by: github-tidy-bot <github-tidy-bot@supabase.com>
16 lines
433 B
JSON
16 lines
433 B
JSON
// generator files need their own tsconfig.json because they don't like "module": "esnext" setting that nextjs requires in the main tsconfig
|
|
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"noImplicitAny": false,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|