From 95726adb5777f831776a0bd61fe32b65434a3948 Mon Sep 17 00:00:00 2001 From: Jeremiasz Major Date: Tue, 17 Jun 2025 14:54:11 +0200 Subject: [PATCH] add failing test --- test/samples/path-config/input/index.js | 2 +- test/tsconfig.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/test/samples/path-config/input/index.js b/test/samples/path-config/input/index.js index bdf77cb..c4c5849 100644 --- a/test/samples/path-config/input/index.js +++ b/test/samples/path-config/input/index.js @@ -2,7 +2,7 @@ export { foo_nested } from './nested/file.js'; /** * @param {import('#lib').Input} input - * @returns {import('#lib').Output} + * @returns {import('@/lib').Output} */ export function foo(input) { return input * 2; diff --git a/test/tsconfig.json b/test/tsconfig.json index b0d796d..f77d281 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -10,6 +10,7 @@ "target": "esnext", "moduleResolution": "bundler", "paths": { + "@/*": ["./samples/path-config/input/*"], "#lib": ["./samples/path-config/input/lib.d.ts"] } },