Files
repomix-mirror/website/client/tsconfig.json
Kazuki Yamada 75678d6410 fix(website): Replace deprecated baseUrl with paths in tsconfig.json
- 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.
2025-08-24 18:59:21 +09:00

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"]
}