Closed josdejong closed 1 year ago
Yeah it's probably from that commit - I'm not sure how to work around this / how to silence the warning because it's essentially a false positive
Probably,
async resolveId(importee, importer) {
// ...
const resolved = await this.resolve(importee, importer, { skipSelf: true });
//...
}
Should be changed to something like:
async resolveId(importee, importer, options) {
// ...
const resolved = await this.resolve(importee, importer, { skipSelf: true, ...options });
//...
}
EDIT: for reference, see https://github.com/lightyen/typescript-paths/issues/3
After upgrading from
7.1.2
to7.1.3
I get the following warning when using rollup:I'm not sure if this is caused by
rollup-plugin-svelte
itself or a side effect from an other plugin. Any idea how to pinpoint this? Can it be casused by this commit https://github.com/sveltejs/rollup-plugin-svelte/commit/3be2d583515f2c63d43385179339946178563bd7?