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

vue-tsc reports errors on clean VitePress .md files #4662

Open
4 tasks done
cha-hin opened this issue Mar 31, 2025 · 2 comments
Open
4 tasks done

vue-tsc reports errors on clean VitePress .md files #4662

cha-hin opened this issue Mar 31, 2025 · 2 comments
Labels
upstream Related to the dependencies

Comments

@cha-hin
Copy link

cha-hin commented Mar 31, 2025

Describe the bug

I followed the docs to enable IntelliSence support in VS Code.

Additionally, I'm using vue-tsc to perform type checking from the command line. My tsconfig file directly affects how vue-tsc behaves.

After enabling IntelliSense, running the command to type-check my source code (including VitePress-related files) now produces the following error(s):

Console output snippet:

$ vue-tsc --noEmit

Unable to resolve embedded: template -> template_inline_css
Unable to resolve embedded: template -> template_inline_ts_0
Unable to resolve embedded: template -> template_inline_ts_1

These errors appear only when the following options are included in the tsconfig file:

{
  "include": [
    "docs/**/*.ts",
    "docs/**/*.vue",
    "docs/**/*.md", // <-- this line
  ],
  "vueCompilerOptions": {
    "vitePressExtensions": [".md"], // <-- this line
  },
}

Reproduction

Create a new vite project (using vue & typescript):

npm create vite@latest
# select "Vue"
# select "TypeScript"

Open your tsconfig.json file and replace the content with the following:

{
  "extends": "@vue/tsconfig/tsconfig.dom.json",
  "include": [
    "src/**/*.ts",
    "src/**/*.tsx",
    "src/**/*.vue",
    "docs/**/*.ts",
    "docs/**/*.vue",
    "docs/**/*.md"
  ],
  "vueCompilerOptions": {
    "vitePressExtensions": [".md"]
  }
}

Run the following command:

./node_modules/.bin/vue-tsc --noEmit

You should observe the following errors in the console output:

Unable to resolve embedded: template -> template_inline_css
Unable to resolve embedded: template -> template_inline_ts_0
Unable to resolve embedded: template -> template_inline_ts_1
Unable to resolve embedded: template -> template_inline_ts_2
Unable to resolve embedded: template -> template_inline_css
Unable to resolve embedded: template -> template_inline_css

Expected behavior

I expect that running the command vue-tsc --noEmit should not produce any warnings or errors when checking VitePress .md files, when these files don’t contain any issues.

System Info

System:
  OS: macOS 15.3.2
  CPU: (12) arm64 Apple M2 Pro
  Memory: 82.97 MB / 16.00 GB
  Shell: 5.9 - /bin/zsh
Binaries:
  Node: 22.13.0 - ~/.nvm/versions/node/v22.13.0/bin/node
  Yarn: 1.22.22 - ~/.yarn/bin/yarn
  npm: 11.2.0 - ~/.nvm/versions/node/v22.13.0/bin/npm
  pnpm: 9.15.4 - ~/Library/pnpm/pnpm
  bun: 1.0.26 - ~/.bun/bin/bun
  Watchman: 2025.02.17.00 - /opt/homebrew/bin/watchman
Browsers:
  Chrome: 134.0.6998.166
  Safari: 18.3.1
  Safari Technology Preview: 18.4

Additional context

No response

Validations

@cha-hin cha-hin added the bug: pending triage Maybe a bug, waiting for confirmation label Mar 31, 2025
@brc-dd
Copy link
Member

brc-dd commented Mar 31, 2025

Please create an issue at https://github.com/vuejs/language-tools

And share a repo with minimal example where this is happening. Also, check once with vitepress@next and vue-tsc@next.

@brc-dd brc-dd added upstream Related to the dependencies and removed bug: pending triage Maybe a bug, waiting for confirmation labels Mar 31, 2025
@cha-hin cha-hin closed this as completed Apr 1, 2025
@cha-hin
Copy link
Author

cha-hin commented Apr 1, 2025

@brc-dd Didn’t work with either package using @next. Issue reported at vuejs/language-tools#5299.

@cha-hin cha-hin reopened this Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
upstream Related to the dependencies
Projects
None yet
Development

No branches or pull requests

2 participants