JS を短くしたいのですが、コンパイル中にエラーが表示されます。
次のようなポイントからのエラー警告:
default = {
Home:'',
Max: 5,
}
また
items: {
visible: 1,
width: 200
}
警告メッセージ:
JSC_TRAILING_COMMA: Parse error. IE8 (and below) will parse trailing commas in array and object literals incorrectly. If you are targeting newer versions of JS, set the appropriate language_in option. at line 162 character 0
visible: 1,
JSC_TRAILING_COMMA: Parse error. IE8 (and below) will parse trailing commas in array and object literals incorrectly. If you are targeting newer versions of JS, set the appropriate language_in option. at line 249 character 0
Home:'',
このエラーを解決する方法を教えてください。