diff options
author | 2023-09-13 16:49:22 +0200 | |
---|---|---|
committer | 2023-09-13 16:49:22 +0200 | |
commit | 4e395a6cab27d79a785ca386114b6229d8f6a7b9 (patch) | |
tree | 5b02e0c7cd6412cef2d4f6a3370f5363e2f0d34b /packages/astro-rss/src | |
parent | b85c8a78a116dbbddc901438bc0b7a1917dc0238 (diff) | |
download | astro-4e395a6cab27d79a785ca386114b6229d8f6a7b9.tar.gz astro-4e395a6cab27d79a785ca386114b6229d8f6a7b9.tar.zst astro-4e395a6cab27d79a785ca386114b6229d8f6a7b9.zip |
config: migrate us to moduleResolution: 'node16' (#8519)
Diffstat (limited to 'packages/astro-rss/src')
-rw-r--r-- | packages/astro-rss/src/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro-rss/src/util.ts b/packages/astro-rss/src/util.ts index e40301a4c..bc1589780 100644 --- a/packages/astro-rss/src/util.ts +++ b/packages/astro-rss/src/util.ts @@ -1,5 +1,5 @@ import type { z } from 'astro/zod'; -import type { RSSOptions } from './index'; +import type { RSSOptions } from './index.js'; /** Normalize URL to its canonical form */ export function createCanonicalURL( |