Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs are wrong for Typescript projects #669

Open
6 tasks done
lud-hu opened this issue Feb 2, 2024 · 1 comment
Open
6 tasks done

Docs are wrong for Typescript projects #669

lud-hu opened this issue Feb 2, 2024 · 1 comment
Labels
to triage This issue needs to be triaged

Comments

@lud-hu
Copy link

lud-hu commented Feb 2, 2024

Describe the bug

For TS + nuxt projects, I cannot just do what the docs say about adding the env.d.ts into the tsconfig. It will just overwrite the nuxt config and therefore vanish out all auto imports etc. If I copy over the generated tsconfig from the .nuxt directory it's working, but this is more like a workaround.

Reproduction

https://github.com/lud-hu/nuxt-histoire-reproduction/blob/main/tsconfig.json

System Info

System:
    OS: macOS 14.0
    CPU: (8) arm64 Apple M1
    Memory: 68.38 MB / 16.00 GB
    Shell: 5.9 - /bin/zsh
  Binaries:
    Node: 18.19.0 - /opt/homebrew/opt/node@18/bin/node
    Yarn: 1.22.19 - /opt/homebrew/bin/yarn
    npm: 10.2.3 - /opt/homebrew/opt/node@18/bin/npm
    pnpm: 8.15.1 - /opt/homebrew/bin/pnpm
  Browsers:
    Chrome: 121.0.6167.139
    Edge: 121.0.2277.98
    Safari: 17.0
  npmPackages:
    @histoire/plugin-nuxt: ^0.17.9 => 0.17.9 
    @histoire/plugin-vue: ^0.17.9 => 0.17.9 
    histoire: ^0.17.9 => 0.17.9

Used Package Manager

yarn

Validations

@lud-hu lud-hu added the to triage This issue needs to be triaged label Feb 2, 2024
@letoast
Copy link

letoast commented May 5, 2024

Same thing here. I managed to solve it by importing the path in nuxt.config.ts

export default defineNuxtConfig({
	imports: {
		imports: [
			{
				from: './node_modules/@histoire/plugin-vue/components.d.ts',
				type: true,
			},
		],
	},
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
to triage This issue needs to be triaged
Projects
None yet
Development

No branches or pull requests

2 participants