Skip to content

Commit c8f8b3b

Browse files
committed
fix: lint and tests
1 parent 050870c commit c8f8b3b

File tree

14 files changed

+96
-7
lines changed

14 files changed

+96
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"project": "./tsconfig.json",
3+
"project": "./tsconfig.lint.json",
44
"sourceType": "module"
55
}
66
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"rootDir": "./src",
6+
"outDir": "./build/lib",
7+
"tsBuildInfoFile": "./build/.tsbuildinfo"
8+
},
9+
"include": ["src"],
10+
"references": [
11+
{ "path": "../query-core" },
12+
{ "path": "../react-query-persist-client" }
13+
]
14+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"project": "./tsconfig.json",
3+
"project": "./tsconfig.lint.json",
44
"sourceType": "module"
55
}
66
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"rootDir": "./src",
6+
"outDir": "./build/lib",
7+
"tsBuildInfoFile": "./build/.tsbuildinfo"
8+
},
9+
"include": ["src"],
10+
"references": [{ "path": "../query-core" }]
11+
}

packages/query-core/.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"project": "./tsconfig.json",
3+
"project": "./tsconfig.lint.json",
44
"sourceType": "module"
55
}
66
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"rootDir": "./src",
6+
"outDir": "./build/lib",
7+
"tsBuildInfoFile": "./build/.tsbuildinfo"
8+
},
9+
"include": ["src"]
10+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"project": "./tsconfig.json",
3+
"project": "./tsconfig.lint.json",
44
"sourceType": "module"
55
}
66
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"rootDir": "./src",
6+
"outDir": "./build/lib",
7+
"tsBuildInfoFile": "./build/.tsbuildinfo"
8+
},
9+
"include": ["src"],
10+
"references": [
11+
{ "path": "../react-query-persist-client" }
12+
]
13+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"project": "./tsconfig.json",
3+
"project": "./tsconfig.lint.json",
44
"sourceType": "module"
55
}
66
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"rootDir": "./src",
6+
"outDir": "./build/lib",
7+
"tsBuildInfoFile": "./build/.tsbuildinfo"
8+
},
9+
"include": ["src"],
10+
"references": [
11+
{ "path": "../query-core" },
12+
{ "path": "../react-query-persist-client" }
13+
]
14+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"project": "./tsconfig.json",
3+
"project": "./tsconfig.lint.json",
44
"sourceType": "module"
55
}
66
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"rootDir": "./src",
6+
"outDir": "./build/lib",
7+
"tsBuildInfoFile": "./build/.tsbuildinfo"
8+
},
9+
"include": ["src"],
10+
"references": [
11+
{ "path": "../query-core" },
12+
{ "path": "../react-query" }
13+
]
14+
}

packages/react-query/.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"project": "./tsconfig.json",
3+
"project": "./tsconfig.lint.json",
44
"sourceType": "module"
55
}
66
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"rootDir": "./src",
6+
"outDir": "./build/lib",
7+
"tsBuildInfoFile": "./build/.tsbuildinfo"
8+
},
9+
"include": ["src"],
10+
"references": [
11+
{ "path": "../query-core" }
12+
]
13+
}

0 commit comments

Comments
 (0)