diff --git a/.eslintrc.js b/.eslintrc.js index 501080a..d394859 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -43,4 +43,5 @@ module.exports = { 'import/no-relative-packages': 'off', // Disable import/no-relative-parent-imports rule 'jsx-a11y/anchor-is-valid': 'off', // Disable jsx-a11y/anchor-is-valid rule }, + ignorePatterns: ['/site'], //ignore document site directory }; diff --git a/tsconfig.json b/tsconfig.json index c848ef8..78efe6c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,5 +7,6 @@ "skipLibCheck": true, "strict": true, "noEmit": true - } + }, + "exclude": ["./site"] }