Files
graff.estate-nextjs-updated/tsconfig.json
T
2025-01-30 17:09:35 +05:00

43 lines
996 B
JSON

{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"],
"@/components/*": ["./src/components/*"],
"@/hooks/*": ["./src/hooks/*"],
"@/hocs/*": ["./src/hocs/*"],
"@/stores/*": ["./src/stores/*"],
"@/pages/*": ["./src/pages/*"],
"@/utils/*": ["./src/utils/*"],
"@/lib/*": ["./src/lib/*"],
"@/consts/*": ["./src/consts/*"],
"@/icons/*": ["./src/components/icons/*"]
}
},
"include": [
"./svgr.d.ts",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"./env.d.ts"
],
"exclude": ["node_modules"]
}