chore: update import and tsconfig

This commit is contained in:
arraysid
2025-05-17 05:42:47 +07:00
parent 9df5bf8bbf
commit 7411fd2a13
18 changed files with 38 additions and 54 deletions
+9 -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,13 @@
{
"name": "next"
}
]
],
"baseUrl": ".",
"paths": {
"@components/atoms": ["../../libs/shadcn-ui/src/atoms/index.ts"],
"@utils/ui": ["../../libs/utils/src/index.ts"],
"@/*": ["src/*"]
}
},
"include": [
"**/*.js",
@@ -36,10 +38,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"]
}