Skip to content

Commit 6341002

Browse files
authoredJun 6, 2023
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.
1 parent 3db66b2 commit 6341002

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"noUnusedParameters": true,
77
"strict": true,
88
"target": "es2020",
9-
"resolveJsonModule": true
9+
"resolveJsonModule": true,
10+
"verbatimModuleSyntax": true
1011
}
1112
}

0 commit comments

Comments
 (0)
Please sign in to comment.