Files
remanso/tsconfig.json
Julien Calixte 6bb5c8a860 fix(tsconfig): drop preserveSymlinks so vue types resolve under pnpm
pnpm resolves every package via a symlink into .pnpm/; preserveSymlinks
pinned resolution to those symlink paths, blocking the vue ->
@vue/runtime-dom -> @vue/runtime-core re-export chain and surfacing
"has no exported member" errors for Ref, toValue, computed, etc.
2026-05-16 10:01:47 +02:00

23 lines
605 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"types": ["node", "vite/client", "vite-plugin-pwa/vue"],
"paths": {
"@/*": ["./src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost", "ES2015"]
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
"exclude": ["node_modules"]
}