From b5f8bc9ebaad59e6aeec0602b81d7348540bbe2e Mon Sep 17 00:00:00 2001 From: Cyrille Derche Date: Fri, 19 May 2023 20:50:43 +0200 Subject: [PATCH] enable the use of @ --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index dca0a0c..7a583d2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,10 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, - "skipLibCheck": true + "skipLibCheck": true, + "paths": { + "@/*": ["./*"] + }, }, "include": ["src/**/*", "__test__/**/*", "eslintrc.json"] }