mirror of
https://github.com/supabase/supabase.git
synced 2026-06-01 10:21:10 +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>
33 lines
751 B
JSON
33 lines
751 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"noImplicitAny": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@ui/*": ["./../../packages/ui/src/*"] // handle ui package paths
|
|
},
|
|
"target": "es2015",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"module": "esnext"
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"pages/guides/append-test.js",
|
|
"jest.config.mjs"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|