Skip to content

Commit

Permalink
update esLint
Browse files Browse the repository at this point in the history
  • Loading branch information
MaksymBora committed Oct 15, 2023
1 parent a725f5e commit 4408932
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ module.exports = {
'import/no-extraneous-dependencies': 0,
'import/prefer-default-export': 0,
'import/extensions': 0,
'no-console': 'off',
},
};
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"rootDir": "src",
// "rootDir": "src",
"outDir": "dist",

/* Bundler mode */
Expand All @@ -16,6 +16,10 @@
"noEmit": true,
"jsx": "react-jsx",
"noImplicitAny": false,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,

/* Linting */
"strict": true,
Expand Down

0 comments on commit 4408932

Please sign in to comment.