From 01d47679aa265f4094ee4e4b2e602ab7d46c289a Mon Sep 17 00:00:00 2001 From: Rob Pilling Date: Thu, 9 Mar 2023 20:45:37 +0000 Subject: [PATCH] tsconfig.json: checkJs comments --- tsconfig.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 7f6a96fef..a383f7346 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,10 @@ "module": "commonjs", + // toggle these to check everything (and optionally change the include below to "apps/myapp/*.js") + // "checkJs": true, + // "noEmit": true, + // code-gen "declaration": false, "emitDeclarationOnly": false, @@ -45,6 +49,7 @@ }, "include": [ "*/*/*.ts", + "apps/*/*.js", // with checkJs: true "*/*/*.d.ts", "modules/*.d.ts", "typescript/types/*.d.ts"