diff --git a/.changeset/spicy-beds-boil.md b/.changeset/spicy-beds-boil.md
new file mode 100644
index 000000000000..dc895fecba24
--- /dev/null
+++ b/.changeset/spicy-beds-boil.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fixes a Windows-specific build issue when importing an Astro component with a `
diff --git a/packages/astro/test/fixtures/alias-tsconfig/src/pages/index.astro b/packages/astro/test/fixtures/alias-tsconfig/src/pages/index.astro
index 565969346c55..0c70740a7300 100644
--- a/packages/astro/test/fixtures/alias-tsconfig/src/pages/index.astro
+++ b/packages/astro/test/fixtures/alias-tsconfig/src/pages/index.astro
@@ -1,6 +1,7 @@
---
import Alias from '@components/Alias.svelte';
import Client from '@components/Client.svelte'
+import Qux from '@components/Qux.astro'
import '@styles/main.css';
import { namespace } from '@test/namespace-package'
import Foo from 'src/components/Foo.astro';
@@ -23,6 +24,7 @@ const globResult = Object.keys(import.meta.glob('@components/glob/*.js')).join('
{namespace}