Closed as not planned
Description
SvelteKit has various imports of the form:
import {foo} from "$app/bar"
Everything under $app/*
is defined in node_modules/@sveltejs/kit/types/ambient-modules.d.ts
:
declare module '$app/env' {
...
}
How can I configure eslint-plugin-import so that it resolves $app/*
to these definitions? Typescript resolution works, so I'm not sure why ESLint is unable to resolve them.
Related: #1509