We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8356e0f commit 250441aCopy full SHA for 250441a
src/utils.js
@@ -7,9 +7,9 @@ export const IS_COMMON_JS = typeof module !== 'undefined'
7
8
export const isSvelte3 = (version = SvelteCompiler.VERSION) => version.startsWith('3')
9
10
-export const DEFAULT_SVELTE_MODULE_INFIX = ['.svelte.']
+const DEFAULT_SVELTE_MODULE_INFIX = ['.svelte.']
11
12
-export const DEFAULT_SVELTE_MODULE_EXT = ['.js', '.ts']
+const DEFAULT_SVELTE_MODULE_EXT = ['.js', '.ts']
13
14
export const isSvelteModule = (filename) =>
15
typeof SvelteCompiler.compileModule === 'function' &&
0 commit comments