From 63410020586909187c451e9a2dd7a3aff50c12f2 Mon Sep 17 00:00:00 2001 From: Keegan Campbell Date: Tue, 6 Jun 2023 14:27:31 -0700 Subject: [PATCH] feat: add `verbatimModuleSyntax` compiler option (#15) BREAKING CHANGE: this will throw errors during Typescript compilation when types are not imported using the `import type` keywords. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 334346c..441b4a1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "noUnusedParameters": true, "strict": true, "target": "es2020", - "resolveJsonModule": true + "resolveJsonModule": true, + "verbatimModuleSyntax": true } }