From dc68ee25334b7195a90b9794ad8b65cc344c7891 Mon Sep 17 00:00:00 2001 From: Mark Wiemer <7833360+mark-wiemer@users.noreply.github.com> Date: Sat, 28 Sep 2024 20:53:28 -0700 Subject: [PATCH] Add compatibility with ahk2 unit tests (#520) * Fix compatibility with ahk2 unit tests * Update ahk2 to main --- ahk2 | 2 +- tsconfig.json | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ahk2 b/ahk2 index 02004de0..b1057d65 160000 --- a/ahk2 +++ b/ahk2 @@ -1 +1 @@ -Subproject commit 02004de0983a982850dd8086ca8b06035b807fb7 +Subproject commit b1057d6513318cd30f2012f98793d085a5f2ac43 diff --git a/tsconfig.json b/tsconfig.json index 9e8e85ff..5b71c5ff 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,11 @@ "experimentalDecorators": true, "sourceMap": true, "rootDirs": ["src"], - "esModuleInterop": true + "esModuleInterop": true, + "baseUrl": ".", + "paths": { + "mocha": ["node_modules/@types/mocha"] + } }, "exclude": ["node_modules", "./ahk2/node_modules"] }