Skip to content

Commit 1d9abb1

Browse files
committed
fix: disable import/export for typescript
1 parent 3029608 commit 1d9abb1

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/plugin-import-rules.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ exports.pluginImportTypeScriptRulesExtra = {
1919
// Buggy on TypeScript:
2020
"import/no-unresolved": "off",
2121
"import/named": "off",
22+
// doesn't understand type namespaces
2223
"import/namespace": "off",
24+
// thinks types are mutable!
25+
"import/export": "off"
2326
}
2427

2528
exports.pluginImportSettings = {

0 commit comments

Comments
 (0)