From 971e8a63bc8fccc76401ebc9d1d2e183a08ecd3e Mon Sep 17 00:00:00 2001 From: Artem Kashaev Date: Mon, 1 Dec 2025 14:56:27 +0500 Subject: [PATCH] feat: add compiler options and path mappings to TypeScript configuration --- frontend/tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 1ffef60..aa3c04f 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -1,4 +1,10 @@ { + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + }, "files": [], "references": [ { "path": "./tsconfig.app.json" },