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.
23 lines
605 B
JSON
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"]
|
|
}
|