everything moved to src

This commit is contained in:
2024-11-20 16:09:31 -05:00
parent b29d1b5722
commit 5e22ba8148
88 changed files with 24 additions and 23 deletions

View File

@@ -13,6 +13,7 @@
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"plugins": [
{
"name": "next"
@@ -21,25 +22,25 @@
"paths": {
"@/*": ["./*"],
"@/components/*": [
"./app/components/*"
"/src/app/components/*"
],
"@/layouts/*": [
"./app/components/layouts/*"
"src/app/components/layouts/*"
],
"@/fragments/*": [
"./app/Fragments/*"
"src/app/Fragments/*"
],
"@/lib/*": [
"./app/lib/*"
"src/app/lib/*"
],
"@/scss/*": [
"./scss/*"
],
"@/admin/*": [
"./app/components/Admin/*"
"src/app/components/Admin/*"
],
"@/products/*": [
"./app/components/Products/*"
"src/app/components/Products/*"
]
},