(s: string[])
| 67 | // const withAppDir = (p: string) => r(nuxtOptions.appDir && !p.startsWith(nuxtOptions.appDir) ? resolve(nuxtOptions.appDir, p) : p) |
| 68 | |
| 69 | const formatExtensions = (s: string[]) => s.length > 1 ? `.{${s.join(',')}}` : `.${s.join('') || 'vue'}` |
| 70 | const defaultExtensions = formatExtensions(['js', 'ts', 'mjs']) |
| 71 | const sfcExtensions = formatExtensions(Array.from(new Set(['.vue', ...(nuxtOptions.extensions || nuxt.options.extensions)])).map(e => e?.replace(/^\.*/, '')).filter((v): v is string => Boolean(v))) |
| 72 |
no outgoing calls
no test coverage detected