t-convex-nextjs-saas/tsconfig.json

41 lines
901 B
JSON
Raw Permalink Normal View History

2026-03-25 22:05:06 +00:00
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2026-04-01 16:14:52 +00:00
"@/*": ["./*"],
"@/components/*": ["./src/components/*"],
"@/lib/*": ["./src/lib/*"],
"@/hooks/*": ["./src/hooks/*"],
"@/app/*": ["./src/app/*"],
"@/i18n/*": ["./src/i18n/*"],
2026-04-01 16:14:52 +00:00
"@/constants": ["./src/constants.ts"]
2026-03-25 22:05:06 +00:00
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
}