We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a5652e commit e744674Copy full SHA for e744674
packages/astro/test/types/astro-config-virtual-module.ts
@@ -3,10 +3,11 @@ import { expectTypeOf } from 'expect-type';
3
import type {
4
ClientDeserializedManifest,
5
ServerDeserializedManifest,
6
-} from '../../dist/types/public';
+} from '../../dist/types/public/index.js';
7
+import '../../client.d.ts';
8
-const server = null as typeof import('astro:config/server');
9
-const client = null as typeof import('astro:config/client');
+const server = null as unknown as typeof import('astro:config/server');
10
+const client = null as unknown as typeof import('astro:config/client');
11
12
describe('astro:config', () => {
13
it('astro:config/server', () => {
0 commit comments