UNPKG
eslint-config-light
Version:
latest (1.5.7)
1.5.7
1.5.6
1.5.5
1.5.3
1.5.2
1.5.1
1.4.7
1.0.6
1.0.4
1.0.2
1.0.1
1.0.0
开箱即用的 ESLint 配置
novlan1.github.io/docs/plugin-light/zh/eslint-config-light.html
novlan1/plugin-light
eslint-config-light
/
lib
/
eslint-plugin-import-setting.js
14 lines
(13 loc)
•
338 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module
.
exports
= {
// 解决路径引用ts文件报错的问题
'import/resolver'
: { node: { extensions: [
'.js'
,
'.jsx'
,
'.ts'
,
'.tsx'
,
'.vue'
], },
// 解决tsconfig下的path别名导致eslint插件无法解决的bug
typescript: { alwaysTryTypes:
true
, }, },
'import/ignore'
: [
'node_modules'
], };