8d440c1993
- Created AboutProps.json with core values, technical arsenal, professional journey, and testimonials. - Added BlogPosts.json for blog post data including title, content, and metadata. - Introduced Contact.json for contact information and FAQs. - Created ProjectProps.json as a template for project details. - Added SkillCardProps.json for skill categories and skills. - Introduced SocialLink.json for social media links. - Updated components to fetch data from newly created JSON files instead of hardcoded values. - Adjusted TypeScript configuration to support JSON module imports. - Enhanced Vite configuration for public directory and build targets.
46 lines
752 B
JSON
46 lines
752 B
JSON
{
|
|
"files": [],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.app.json"
|
|
},
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
],
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"@assets/*": [
|
|
"src/assets/*"
|
|
],
|
|
"@components/*": [
|
|
"src/components/*"
|
|
],
|
|
"@pages/*": [
|
|
"src/pages/*"
|
|
],
|
|
"@data/*": [
|
|
"src/data/*"
|
|
],
|
|
"@styles/*": [
|
|
"src/styles/*"
|
|
],
|
|
"@tests/*": [
|
|
"src/tests/*"
|
|
],
|
|
"@images/*": [
|
|
"src/assets/images/*"
|
|
],
|
|
},
|
|
"moduleResolution": "node",
|
|
"types": [
|
|
"node"
|
|
]
|
|
}
|
|
} |