Skip to content

Commit 1b9837f

Browse files
chore: remove baseUrl from tsConfig, as it's deprecated (#9178)
* chore: remove baseUrl from tsConfig, as it's deprecated * ci: apply automated fixes * test: fix import * chore: Unused item in ignoreDependencies --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 80dd0db commit 1b9837f

File tree

26 files changed

+14
-39
lines changed

26 files changed

+14
-39
lines changed

knip.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"ignoreDependencies": [
1010
"@types/react",
1111
"@types/react-dom",
12-
"esbuild-plugin-file-path-extensions",
1312
"react",
1413
"react-dom"
1514
],

packages/angular-query-devtools-experimental/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"noImplicitOverride": true,
87
"noPropertyAccessFromIndexSignature": true,
98
"noFallthroughCasesInSwitch": true,

packages/angular-query-experimental/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"noImplicitOverride": true,
87
"noPropertyAccessFromIndexSignature": true,
98
"noFallthroughCasesInSwitch": true,

packages/angular-query-persist-client/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"moduleResolution": "Bundler",
87
"noImplicitOverride": true,
98
"noPropertyAccessFromIndexSignature": true,

packages/eslint-plugin-query/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": ["src", "*.config.js", "*.config.ts", "package.json"]
98
}

packages/query-async-storage-persister/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": ["src", "*.config.js", "*.config.ts", "package.json"],
98
"references": [{ "path": "../query-persist-client-core" }]

packages/query-broadcast-client-experimental/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": ["src", "*.config.js", "*.config.ts", "package.json"],
98
"references": [{ "path": "../query-core" }]

packages/query-codemods/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": ["src", "*.config.js", "*.config.ts", "package.json"]
98
}

packages/query-core/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": ["src", "*.config.js", "package.json"]
98
}

packages/query-devtools/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"jsx": "preserve",
87
"jsxImportSource": "solid-js"
98
},

packages/query-persist-client-core/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": ["src", "*.config.js", "*.config.ts", "package.json"],
98
"references": [{ "path": "../query-core" }]

packages/query-sync-storage-persister/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": ["src", "*.config.js", "*.config.ts", "package.json"],
98
"references": [

packages/query-test-utils/src/__test__/queryKey.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { queryKey } from 'src/queryKey'
21
import { describe, expect, it } from 'vitest'
2+
import { queryKey } from '../queryKey'
33

44
describe('queryKey', () => {
55
it('should return a query key', () => {

packages/query-test-utils/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": ["src", "*.config.js", "package.json"]
98
}

packages/react-query-devtools/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"jsx": "react-jsx"
87
},
98
"include": [

packages/react-query-next-experimental/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"jsx": "react-jsx"
87
},
98
"include": ["src", "*.config.js", "*.config.ts", "package.json"],

packages/react-query-persist-client/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"jsx": "react-jsx"
87
},
98
"include": [

packages/react-query/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"jsx": "react-jsx"
87
},
98
"include": ["src", "*.config.js", "*.config.ts", "package.json"]

packages/solid-query-devtools/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"jsx": "preserve",
87
"jsxImportSource": "solid-js"
98
},

packages/solid-query-persist-client/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"jsx": "preserve",
87
"jsxImportSource": "solid-js"
98
},

packages/solid-query/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
"outDir": "./dist-ts",
55
"rootDir": ".",
6-
"baseUrl": ".",
76
"jsx": "preserve",
87
"jsxImportSource": "solid-js"
98
},

packages/svelte-query-devtools/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": [
98
"src/**/*.js",

packages/svelte-query-persist-client/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": [
98
"src/**/*.js",

packages/svelte-query/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": [
98
"src/**/*.js",

packages/vue-query-devtools/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": [
98
"src/**/*.ts",

packages/vue-query/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist-ts",
5-
"rootDir": ".",
6-
"baseUrl": "."
5+
"rootDir": "."
76
},
87
"include": [
98
"src",

0 commit comments

Comments
 (0)