From 07a37af37862b26ae64081c71cca46c809324d3a Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Wed, 13 Dec 2023 14:02:38 +0700 Subject: [PATCH] build(typescript): enable `exactOptionalPropertyTypes` compiler option --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 49af10f..efec48a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "exactOptionalPropertyTypes": true, "strict": true, "module": "node16", "declaration": true,