From 289600d939fb9bcc2357007ec58c9db39f7c2b34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Belli?= Date: Mon, 20 Nov 2023 16:44:45 +0100 Subject: [PATCH] chore: basic support for running tests in vscode --- package.json | 6 ++++++ tsconfig.json | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 1dc805939..c47556d54 100644 --- a/package.json +++ b/package.json @@ -79,6 +79,12 @@ "resolutions": { "@types/express-serve-static-core": "4.17.38" }, + "jest": { + "projects": [ + "/packages/*", + "/modules/*" + ] + }, "collective": { "type": "opencollective", "url": "https://opencollective.com/accounts-js", diff --git a/tsconfig.json b/tsconfig.json index deff9d9d1..e615c43ca 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,6 +8,8 @@ "declaration": true, "pretty": true, "strict": true, - "esModuleInterop": true + "esModuleInterop": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true } }