mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 04:14:46 +08:00
20 lines
445 B
JSON
20 lines
445 B
JSON
{
|
|
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2021"],
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2019",
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"]
|
|
},
|
|
|
|
// Remix takes care of building everything in `remix build`.
|
|
"noEmit": true
|
|
}
|
|
}
|