From 3faed3625ec4064c0fac445938b0aae09c406f2d Mon Sep 17 00:00:00 2001 From: "C. Fuhrman" Date: Fri, 10 Jan 2025 15:44:22 -0500 Subject: [PATCH] allow always using 'src/constants' (a kind of absolute path) --- client/tsconfig.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/tsconfig.json b/client/tsconfig.json index 5324e80..d328c26 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,5 +1,9 @@ { "compilerOptions": { + "baseUrl": "./", + "paths": { + "src/*": ["src/*"] + }, "target": "ESNext", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"],