From e1dc1dab323113f3173b6ae207ec494b83f29c01 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 19 May 2024 12:12:55 +0900 Subject: [PATCH] feat: add path for root in tsconfig --- packages/react/tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/react/tsconfig.json b/packages/react/tsconfig.json index e16448f..4099448 100644 --- a/packages/react/tsconfig.json +++ b/packages/react/tsconfig.json @@ -18,7 +18,11 @@ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + + "paths": { + "@/*": ["./*"] + } }, "include": ["components", "stories", "./stories.ts", "src"], "references": [{ "path": "./tsconfig.node.json" }]