From 025a84b2efd632ec9aef5ebcfd3f98233f065c10 Mon Sep 17 00:00:00 2001 From: Quinn Hegeman <102350242+itsfinniii@users.noreply.github.com> Date: Sat, 7 Mar 2026 17:20:15 +0100 Subject: [PATCH] Add @ path to tsconfig --- astro/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/astro/tsconfig.json b/astro/tsconfig.json index 3832a3d..a1563b6 100644 --- a/astro/tsconfig.json +++ b/astro/tsconfig.json @@ -9,6 +9,9 @@ ], "compilerOptions": { "jsx": "react-jsx", - "jsxImportSource": "preact" + "jsxImportSource": "preact", + "paths": { + "@/*": ["./*"] + } } } \ No newline at end of file