Skip to content

Commit 2a510f9

Browse files
committed
fix: remove .tsx files from ESLint and TypeScript configuration includes
1 parent a2c86ed commit 2a510f9

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import globals from "globals";
77
export default [
88
js.configs.recommended,
99
{
10-
files: ["**/*.{js,jsx,ts,tsx}"],
10+
files: ["**/*.{js,jsx,ts}"],
1111
languageOptions: {
1212
parser: tsParser,
1313
globals: {

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
"prettier-plugin-tailwindcss": "0.7.2",
4040
"prisma": "7.1.0",
4141
"tailwindcss": "4.1.17",
42-
"tsx": "^4.21.0",
4342
"typescript": "5.9.3"
4443
}
4544
}

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"include": [
3232
"next-env.d.ts",
3333
"**/*.ts",
34-
"**/*.tsx",
3534
".next/types/**/*.ts",
3635
".next/dev/types/**/*.ts"
3736
],

0 commit comments

Comments
 (0)