mirror of
https://github.com/yamadashy/repomix.git
synced 2026-02-03 11:33:39 +01:00
- Replace "baseUrl": "." with "paths": {"*": ["./*"]} in website/client/tsconfig.json
- Fixes TypeScript error TS5102: Option 'baseUrl' has been removed
- Ensures compatibility with tsgo which requires the new paths configuration
This resolves the linting error when using tsgo for type checking.
32 lines
755 B
JSON
32 lines
755 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"paths": {"*": ["./*"]},
|
|
"types": ["vite/client", "vitepress/client"]
|
|
},
|
|
"include": [
|
|
".vitepress/**/*.ts",
|
|
".vitepress/**/*.d.ts",
|
|
".vitepress/**/*.tsx",
|
|
".vitepress/**/*.vue",
|
|
"components/**/*.ts",
|
|
"components/**/*.vue",
|
|
"composables/**/*.ts",
|
|
"utils/**/*.ts",
|
|
"constants/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|