We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af270e commit f20973cCopy full SHA for f20973c
.eslintrc
@@ -29,6 +29,13 @@
29
},
30
"rules": {
31
"max-len": ["error", {"code": 180 }],
32
+ "import/extensions": [
33
+ "error",
34
+ "ignorePackages",
35
+ {
36
+ "ts": "never"
37
+ }
38
+ ]
39
40
"plugins": [
41
"jsdoc",
@@ -37,6 +44,16 @@
44
"settings": {
45
"jsdoc": {
46
"mode": "typescript"
47
+ },
48
+ "import/extensions": [".js", ".ts"],
49
+ "import/parsers": {
50
+ "@typescript-eslint/parser": [".ts"]
51
52
+ "import/resolver": {
53
+ "node": {
54
+ "extensions": [".js", ".ts", ".d.ts"],
55
+ "paths": ["src"]
56
57
}
58
42
59
0 commit comments