update product details

This commit is contained in:
Rami Bitar
2026-06-03 13:41:04 -04:00
parent 4aa55c2b89
commit 3cc7ec376c
42 changed files with 1965 additions and 972 deletions

View File

@@ -1,29 +1,46 @@
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"incremental": true,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowJs": true,
"types": ["node", "vite/client"],
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"types": [
"node"
],
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"~/*": ["./*"]
}
"@/*": [
"./*"
],
"~/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"src",
"next-env.d.ts",
"app",
"api",
"components",
"config",
@@ -33,8 +50,15 @@
"lib",
"services",
"vendor",
"react-editor.config.tsx",
"vite.config.ts"
"next.config.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules", "dist"]
"exclude": [
"node_modules",
"dist",
".next"
]
}