2026-04-18 14:52:39 +03: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"
|
|
|
|
|
}
|
|
|
|
|
],
|
2026-05-12 16:10:37 +03:00
|
|
|
"types": ["vitest/globals", "react/canary"],
|
2026-04-18 14:52:39 +03:00
|
|
|
"paths": {
|
2026-04-19 08:34:38 +03:00
|
|
|
"@/*": ["./*"],
|
|
|
|
|
"$shared/*": ["./src/shared/*"],
|
|
|
|
|
"$shared": ["./src/shared"],
|
|
|
|
|
"$entities/*": ["./src/entities/*"],
|
|
|
|
|
"$entities": ["./src/entities"],
|
|
|
|
|
"$features/*": ["./src/features/*"],
|
|
|
|
|
"$features": ["./src/features"],
|
|
|
|
|
"$widgets/*": ["./src/widgets/*"],
|
|
|
|
|
"$widgets": ["./src/widgets"],
|
|
|
|
|
"$app/*": ["./src/app/*"],
|
|
|
|
|
"$app": ["./src/app"],
|
|
|
|
|
"$routes/*": ["./src/routes/*"],
|
|
|
|
|
"$routes": ["./src/routes"]
|
2026-04-18 14:52:39 +03:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
|
".next/dev/types/**/*.ts",
|
|
|
|
|
"**/*.mts"
|
|
|
|
|
],
|
2026-05-19 18:50:45 +03:00
|
|
|
"exclude": ["node_modules", "**/*.stories.ts", "**/*.stories.tsx"]
|
2026-04-18 14:52:39 +03:00
|
|
|
}
|