From 7c8ba8f909b5d09cb0bc5022eac87824eb8a8405 Mon Sep 17 00:00:00 2001 From: moontai0724 Date: Wed, 9 Oct 2024 15:52:13 +0800 Subject: [PATCH] fix: correct paths for tsc-alias current paths will resulted in tsc-alias wrongly calculate the path of the aliased imports --- src/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index 7a71416..88c155d 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -10,7 +10,7 @@ "rootDir": ".", "paths": { - "@/*": ["../src/*"] + "@/*": ["./*"] } }, "include": ["./**/*.ts"],