From 1a87c0d475b28b33ad6663429701e5cbf69f7fb1 Mon Sep 17 00:00:00 2001 From: Avior Date: Mon, 2 Oct 2023 08:15:37 +0000 Subject: [PATCH] feat: add a base URL so imports are cleaner --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index af28dc9..6317cc7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,7 @@ { "extends": "./node_modules/astro/tsconfigs/strictest.json", - "exclude": ["cypress"] + "exclude": ["cypress"], + "compilerOptions": { + "baseUrl": "src" + } }