fix: nextjs landing utils

This commit is contained in:
arraysid
2025-05-25 14:17:36 +07:00
parent edc8fff13a
commit 738b0b5728
13 changed files with 30 additions and 37 deletions
+10 -12
View File
@@ -11,11 +11,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
@@ -24,7 +20,14 @@
{
"name": "next"
}
]
],
"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/*"]
}
},
"include": [
"**/*.js",
@@ -36,10 +39,5 @@
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"jest.config.ts",
"**/*.spec.ts",
"**/*.test.ts"
]
"exclude": ["node_modules", "jest.config.ts", "**/*.spec.ts", "**/*.test.ts"]
}