From aacda4360f03651bd3b70de8d0840c8907ce897b Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:06:42 -0400 Subject: [PATCH] set verbatimModuleSyntax: true --- bases/ember.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bases/ember.json b/bases/ember.json index 1b14db2..ed52f6c 100644 --- a/bases/ember.json +++ b/bases/ember.json @@ -12,6 +12,10 @@ "module": "esnext", "moduleResolution": "bundler", + // We don't want to include types dependencies in our compiled output, so tell TypeScript + // to enforce using `import type` instead of `import` for Types. + "verbatimModuleSyntax": true, + // Trying to check Ember apps and addons with `allowJs: true` is a recipe // for many unresolveable type errors, because with *considerable* extra // configuration it ends up including many files which are *not* valid and