diff --git a/.eslintrc.js b/.eslintrc.js index bea7a698..589c8b62 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -4,5 +4,6 @@ module.exports = { extends: ['next', 'next/core-web-vitals'], rules: { '@typescript-eslint/no-explicit-any': 'off', + 'react/no-unescaped-entities': 'off', }, } diff --git a/tsconfig.json b/tsconfig.json index b678ce96..4801e7c6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -26,5 +26,6 @@ "exclude": ["node_modules"], "types": ["jest", "@testing-library/jest-dom"], "typeRoots": ["./node_modules/@types", "./types"], + "jsx": "react-jsx", "sourceMap": true }