structure + sidebar

This commit is contained in:
hamid zarghami
2025-04-28 10:15:35 +03:30
parent 2ef02e0b6b
commit 53212445c6
25 changed files with 1144 additions and 19 deletions
+14 -6
View File
@@ -2,23 +2,31 @@
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2023"],
"lib": [
"ES2023"
],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
"noUncheckedSideEffectImports": true,
"baseUrl": "./",
"paths": {
"@/*": [
"src/*"
]
}
},
"include": ["vite.config.ts"]
}
"include": [
"vite.config.ts"
]
}