2025-04-26 20:32:58 +07:00
|
|
|
{
|
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"emitDeclarationOnly": false,
|
|
|
|
|
"esModuleInterop": true,
|
2025-05-08 22:11:57 +07:00
|
|
|
"target": "ES2022",
|
2025-04-26 20:32:58 +07:00
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2025-05-25 15:13:44 +07:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2025-04-26 20:32:58 +07:00
|
|
|
"allowJs": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"incremental": true,
|
2025-04-27 09:31:24 +07:00
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
2025-05-25 15:13:44 +07:00
|
|
|
],
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@components": ["../../libs/shadcn-ui/src/atoms/index.ts"],
|
|
|
|
|
"@utils": ["../../libs/shadcn-ui/src/lib/index.ts"],
|
|
|
|
|
"@schemas": ["../../libs/service/src/schemas/index.ts"],
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
}
|
2025-04-26 20:32:58 +07:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"**/*.js",
|
|
|
|
|
"**/*.jsx",
|
2025-04-27 09:31:24 +07:00
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
2025-04-26 20:32:58 +07:00
|
|
|
"../../apps/landing/.next/types/**/*.ts",
|
|
|
|
|
"../../dist/apps/landing/.next/types/**/*.ts",
|
2025-04-27 09:31:24 +07:00
|
|
|
"next-env.d.ts",
|
|
|
|
|
".next/types/**/*.ts"
|
2025-04-26 20:32:58 +07:00
|
|
|
],
|
2025-05-25 15:13:44 +07:00
|
|
|
"exclude": ["node_modules", "jest.config.ts", "**/*.spec.ts", "**/*.test.ts"]
|
2025-04-26 20:32:58 +07:00
|
|
|
}
|