Skip to content

Commit

Permalink
fix: setting 경로 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian committed Nov 11, 2024
1 parent 967cb61 commit a3401b0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default [
"import/resolver": {
typescript: {
alwaysTryTypes: true,
project: resolve(__dirname, "./tsconfig.json"),
project: "./tsconfig.json",
},
},
react: {
Expand All @@ -119,10 +119,10 @@ export default [
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
"import/internal-regex": "^@/",
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
"import/internal-regex": "^@/",
},
];

0 comments on commit a3401b0

Please sign in to comment.