2024-11-14 12:45:58 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-12-20 09:49:54 -05:00
|
|
|
"target": "ESNext",
|
|
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"dom.iterable",
|
|
|
|
|
"esnext"
|
|
|
|
|
],
|
2024-11-14 12:45:58 -05:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
2024-12-20 09:49:54 -05:00
|
|
|
"module": "commonjs",
|
2024-11-14 12:45:58 -05:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"incremental": true,
|
2024-11-20 16:09:31 -05:00
|
|
|
"baseUrl": ".",
|
2024-11-14 12:45:58 -05:00
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"paths": {
|
2024-11-25 16:51:47 -05:00
|
|
|
"@src/*": [
|
2024-12-20 09:49:54 -05:00
|
|
|
"./src/*"
|
|
|
|
|
],
|
2024-11-21 15:24:37 -05:00
|
|
|
"@/db/*": [
|
2024-12-20 09:49:54 -05:00
|
|
|
"./src/db/*"
|
|
|
|
|
],
|
2024-12-12 00:04:14 -05:00
|
|
|
"@queries/*": [
|
2024-12-20 09:49:54 -05:00
|
|
|
"./src/db/queries/*"
|
|
|
|
|
],
|
2024-12-12 00:04:14 -05:00
|
|
|
"@schemas/*": [
|
2024-12-20 09:49:54 -05:00
|
|
|
"./src/drizzle/schema/*"
|
|
|
|
|
],
|
2024-11-25 16:51:47 -05:00
|
|
|
"@db/*": [
|
2024-12-20 09:49:54 -05:00
|
|
|
"./src/db/*"
|
|
|
|
|
],
|
2024-11-25 16:51:47 -05:00
|
|
|
"@types/*": [
|
2025-01-13 17:24:58 -05:00
|
|
|
"./src/lib/types/*"
|
2024-12-20 09:49:54 -05:00
|
|
|
],
|
2024-11-25 16:51:47 -05:00
|
|
|
"@components/*": [
|
2024-12-11 16:50:34 -05:00
|
|
|
"./src/components/*",
|
|
|
|
|
"./src/components/ui/*",
|
|
|
|
|
"./src/components/Brands/*"
|
2024-11-25 16:51:47 -05:00
|
|
|
],
|
|
|
|
|
"@actions/*": [
|
2024-12-11 16:50:34 -05:00
|
|
|
"./src/actions/*"
|
2024-11-15 15:58:34 -05:00
|
|
|
],
|
2024-11-25 16:51:47 -05:00
|
|
|
"@layouts/*": [
|
2024-12-11 16:50:34 -05:00
|
|
|
"./src/components/layouts/*"
|
2024-11-15 15:58:34 -05:00
|
|
|
],
|
2024-11-25 16:51:47 -05:00
|
|
|
"@fragments/*": [
|
2024-12-11 16:50:34 -05:00
|
|
|
"./src/app/Fragments/*"
|
2024-11-15 15:58:34 -05:00
|
|
|
],
|
2024-11-25 16:51:47 -05:00
|
|
|
"@lib/*": [
|
2024-11-26 00:14:49 -05:00
|
|
|
"@lib/*",
|
2024-12-11 16:50:34 -05:00
|
|
|
"./src/lib/*"
|
2024-11-15 15:58:34 -05:00
|
|
|
],
|
2024-12-11 23:26:14 -05:00
|
|
|
"@styles/*": [
|
|
|
|
|
"./src/styles/*"
|
|
|
|
|
],
|
2024-11-20 23:16:26 -05:00
|
|
|
"scss/*": [
|
|
|
|
|
"./src/scss/*"
|
2024-11-15 15:58:34 -05:00
|
|
|
],
|
2024-11-20 23:16:26 -05:00
|
|
|
"admin/*": [
|
2024-12-11 16:50:34 -05:00
|
|
|
"./src/components/Admin/*"
|
2024-11-15 15:58:34 -05:00
|
|
|
],
|
2024-11-20 23:16:26 -05:00
|
|
|
"products/*": [
|
2024-12-11 16:50:34 -05:00
|
|
|
"./src/components/Products/*"
|
2024-11-15 15:58:34 -05:00
|
|
|
]
|
|
|
|
|
},
|
2024-12-20 09:49:54 -05:00
|
|
|
"moduleResolution": "node"
|
2024-11-14 12:45:58 -05:00
|
|
|
},
|
2024-12-20 09:49:54 -05:00
|
|
|
"include": [
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
".next/types/**/*.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules"
|
|
|
|
|
]
|
2024-11-14 12:45:58 -05:00
|
|
|
}
|