bizihive/tsconfig.json
2026-01-27 16:24:05 +03:30

51 lines
1.1 KiB
JSON

{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"components/*": [
"./common/components/*"
],
"services/*": [
"./common/services/*"
]
},
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"custom.d.ts",
"**/*.ts",
"**/*.tsx",
"src/common/components/parser/parser.tsx",
"src/common/templates/general/header/header.tsx",
"src/common/services/analytics/analytics.ts",
"src/pages/sitemap.js",
".next/types/**/*.ts"
, "src/common/services/general/ghj", "src/common/services/user/AuthContext.tsx" ],
"exclude": [
"node_modules"
]
}