From 4f7a09cf80b75c7ec410c2cacf2669d9527aad6a Mon Sep 17 00:00:00 2001 From: Colin Rotherham Date: Thu, 30 Nov 2023 11:37:37 +0000 Subject: [PATCH] Enable JavaScript compiler checks --- jsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/jsconfig.json b/jsconfig.json index a8667b8d3c..372c898e12 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,5 +1,15 @@ { + "exclude": [ + "**/*.spec.*", + "**/*.test.*", + "__tests__", + "cypress", + "lib/assets", + "prototype-starter", + "scripts" + ], "compilerOptions": { + "checkJs": true, "module": "NodeNext", "resolveJsonModule": true }