From fb4b4a94e854f2d25f1cb5c986a132f5cee67a83 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 1 Oct 2024 15:10:54 -0400 Subject: [PATCH] Fix types --- packages/@glimmer/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/@glimmer/tsconfig.json b/packages/@glimmer/tsconfig.json index d478d6443..ad7e80199 100644 --- a/packages/@glimmer/tsconfig.json +++ b/packages/@glimmer/tsconfig.json @@ -28,7 +28,10 @@ "noPropertyAccessFromIndexSignature": true, "noUncheckedIndexedAccess": true, - "types": ["qunit", "node", "vite/client"] + "types": ["qunit", "node", "vite/client"], + "paths": { + "@glimmer/debug": ["./debug/index.ts"] + } }, "include": ["./**/*", "./**/*.d.ts"], "exclude": ["*/dist", "*/node_modules", "**/fixtures", "*/test"]