mirror of
https://github.com/supabase/supabase.git
synced 2026-05-30 17:32:00 +08:00
* add supabase assets url to urlImports * rm unnecessary comment * add download script * clean up + jsr supabasejs script * rm unused jsr-url const * Exclude the *.ts files in public folder from tsconfig. * Add the base path when fetching the type definitions. --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
40 lines
897 B
JSON
40 lines
897 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"downlevelIteration": true,
|
|
"incremental": true,
|
|
"paths": {
|
|
"@ui/*": ["./../../packages/ui/src/*"] // handle ui package paths
|
|
},
|
|
"useDefineForClassFields": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js",
|
|
"**/*.jsx",
|
|
".next/types/**/*.ts",
|
|
"./../../packages/ui/src/**/*.d.ts"
|
|
],
|
|
"exclude": ["node_modules", "public/deno/*.ts"]
|
|
}
|