From ac65e5f29080a3fa3a62623f2924071874d4454c Mon Sep 17 00:00:00 2001 From: Peter Todd Date: Thu, 13 Feb 2025 09:29:26 +0000 Subject: [PATCH] set devcontainer to use correct typescript version --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 9c1e1de5..2448e66f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -15,7 +15,8 @@ ], "settings": { "python.analysis.typeCheckingMode": "basic", - "python.defaultInterpreterPath": "/usr/local/bin/python" + "python.defaultInterpreterPath": "/usr/local/bin/python", + "typescript.tsdk": "/app/node_modules/typescript/lib" } } },