mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 08:54:22 +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>
30 lines
677 B
JSON
30 lines
677 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
// handle ui package paths
|
|
"@ui/*": ["./../../packages/ui/src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|