Cannot read property "range"of null 오류 해결

1708 단어 난제
.eslintrc 프로필 추가:
parserOptions: {
     
    ecmaFeatures: {
     
        legacyDecorators: true
    },
    parser: 'babel-eslint',
},
rules : {
     
    "template-curly-spacing" : "off",
    "indent": ["error", 4, {
     
	 "ignoredNodes": ["TemplateLiteral"]
	}]
}

좋은 웹페이지 즐겨찾기