Skip to content

Commit

Permalink
feat: add verbatimModuleSyntax compiler option (#15)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: this will throw errors during Typescript compilation when types are not imported using the `import type` keywords.
  • Loading branch information
kfcampbell committed Jun 6, 2023
1 parent 3db66b2 commit 6341002
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.json
Expand Up @@ -6,6 +6,7 @@
"noUnusedParameters": true,
"strict": true,
"target": "es2020",
"resolveJsonModule": true
"resolveJsonModule": true,
"verbatimModuleSyntax": true
}
}

0 comments on commit 6341002

Please sign in to comment.