From 9b37243804dcca9a69b00142706f60f36b89e405 Mon Sep 17 00:00:00 2001 From: Daniel Bankhead Date: Thu, 10 Oct 2024 07:32:33 -0700 Subject: [PATCH] feat!: Set `stripInternal` in `tsconfig-google.json` (#900) --- tsconfig-google.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tsconfig-google.json b/tsconfig-google.json index 53e4a563..392fd1d4 100644 --- a/tsconfig-google.json +++ b/tsconfig-google.json @@ -11,10 +11,9 @@ "noImplicitReturns": true, "pretty": true, "sourceMap": true, + "stripInternal": true, "strict": true, "target": "es2018" }, - "exclude": [ - "node_modules" - ] + "exclude": ["node_modules"] }