Skip to content

Commit 7af5db6

Browse files
committed
update lint config
1 parent 6561792 commit 7af5db6

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

packages/react-router/.eslintrc.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ module.exports = {
33
browser: true,
44
node: true,
55
},
6-
overrides: [],
6+
overrides: [
7+
{
8+
files: ['vite.config.ts'],
9+
parserOptions: {
10+
project: ['tsconfig.test.json'],
11+
},
12+
},
13+
],
714
extends: ['../../.eslintrc.js'],
815
};

packages/react-router/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry/react-router",
3-
"version": "9.0.0-alpha.1",
3+
"version": "9.0.0-alpha.2",
44
"description": "Official Sentry SDK for React Router v7 (Framework)",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/react-router",
@@ -30,9 +30,9 @@
3030
"access": "public"
3131
},
3232
"dependencies": {
33-
"@sentry/core": "9.0.0-alpha.1",
34-
"@sentry/browser": "9.0.0-alpha.1",
35-
"@sentry/node": "9.0.0-alpha.1"
33+
"@sentry/core": "9.0.0-alpha.2",
34+
"@sentry/browser": "9.0.0-alpha.2",
35+
"@sentry/node": "9.0.0-alpha.2"
3636
},
3737
"devDependencies": {
3838
"@react-router/node": "^7.1.5",

packages/react-router/tsconfig.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./tsconfig.json",
33

4-
"include": ["test/**/*", "vitest.config.ts"],
4+
"include": ["test/**/*", "vite.config.ts"],
55

66
"compilerOptions": {
77
"lib": ["DOM", "ES2018"],

0 commit comments

Comments
 (0)