diff options
author | 2021-06-02 09:53:24 -0600 | |
---|---|---|
committer | 2021-06-02 09:53:24 -0600 | |
commit | d2330a58256c212288bbba04ca41f1d65d37e711 (patch) | |
tree | ab0cd107b831f2ad50c35bec8b51e2991522780e /packages/astro-parser/src/interfaces.ts | |
parent | e3df5e80e16b6dec75ec7f44a1ea4c0692606fdb (diff) | |
download | astro-d2330a58256c212288bbba04ca41f1d65d37e711.tar.gz astro-d2330a58256c212288bbba04ca41f1d65d37e711.tar.zst astro-d2330a58256c212288bbba04ca41f1d65d37e711.zip |
Improve “file not found” error display (#288)
Diffstat (limited to 'packages/astro-parser/src/interfaces.ts')
-rw-r--r-- | packages/astro-parser/src/interfaces.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro-parser/src/interfaces.ts b/packages/astro-parser/src/interfaces.ts index 40eeb04f5..f3fa5da9d 100644 --- a/packages/astro-parser/src/interfaces.ts +++ b/packages/astro-parser/src/interfaces.ts @@ -1,5 +1,5 @@ import type { SourceMap } from 'magic-string'; -export type { CompileError } from './utils/error'; +export { CompileError } from './utils/error'; export interface BaseNode { start: number; |