Update tsconfig path

This commit is contained in:
mbaharip
2023-05-04 16:07:43 +07:00
parent b50b53aa54
commit bfd6b5dbb7
58 changed files with 624 additions and 716 deletions
+8 -6
View File
@@ -14,13 +14,15 @@
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./src/*"],
"@components/*": ["./src/components/*"],
"@config/*": ["./src/config/*"],
"@hooks/*": ["./src/hooks/*"],
"@styles/*": ["./src/styles/*"],
"@utils/*": ["./src/utils/*"]
// "@/*": ["./src/*"],
"components/*": ["components/*"],
"config/*": ["config/*"],
"hooks/*": ["hooks/*"],
"styles/*": ["styles/*"],
"utils/*": ["utils/*"],
"types/*": ["types/*"],
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],