mirror of
https://github.com/supabase/supabase.git
synced 2026-05-23 19:13:13 +08:00
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"]
|
|
}
|