mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 11:14:34 +08:00
* fix cms types and build --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
44 lines
1005 B
JSON
44 lines
1005 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"target": "ES2022",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"jsx": "preserve",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"isolatedModules": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@payload-config": ["./src/payload.config.ts"],
|
|
"react": ["./node_modules/@types/react"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"redirects.js",
|
|
"next.config.js",
|
|
"next-sitemap.config.cjs"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|