Skip to content

Commit 62086b3

Browse files
chore: Extend base tsconfig for svelte packages (#5501)
1 parent c05b8b8 commit 62086b3

File tree

2 files changed

+3
-37
lines changed

2 files changed

+3
-37
lines changed

packages/svelte-query-devtools/tsconfig.json

+2-19
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,8 @@
11
{
2+
"extends": "../../tsconfig.json",
23
"compilerOptions": {
3-
"allowImportingTsExtensions": true,
4-
"allowJs": true,
5-
"allowSyntheticDefaultImports": true,
6-
"checkJs": true,
7-
"esModuleInterop": true,
8-
"forceConsistentCasingInFileNames": true,
94
"isolatedModules": true,
10-
"lib": ["DOM", "DOM.Iterable", "ES2020"],
11-
"module": "ES2020",
12-
"moduleResolution": "bundler",
13-
"noEmit": true,
14-
"noImplicitReturns": true,
15-
"noUncheckedIndexedAccess": true,
16-
"noUnusedLocals": true,
17-
"noUnusedParameters": true,
18-
"resolveJsonModule": true,
19-
"skipLibCheck": true,
20-
"sourceMap": true,
21-
"strict": true,
22-
"target": "ES2020"
5+
"noEmit": true
236
},
247
"include": [
258
"src/**/*.js",

packages/svelte-query/tsconfig.json

+1-18
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,8 @@
11
{
2+
"extends": "../../tsconfig.json",
23
"compilerOptions": {
3-
"allowImportingTsExtensions": true,
4-
"allowJs": true,
5-
"allowSyntheticDefaultImports": true,
6-
"checkJs": true,
7-
"esModuleInterop": true,
8-
"forceConsistentCasingInFileNames": true,
94
"isolatedModules": true,
10-
"lib": ["DOM", "DOM.Iterable", "ES2020"],
11-
"module": "ES2020",
12-
"moduleResolution": "bundler",
135
"noEmit": true,
14-
"noImplicitReturns": true,
15-
"noUncheckedIndexedAccess": true,
16-
"noUnusedLocals": true,
17-
"noUnusedParameters": true,
18-
"resolveJsonModule": true,
19-
"skipLibCheck": true,
20-
"sourceMap": true,
21-
"strict": true,
22-
"target": "ES2020",
236
"types": ["vitest/globals", "@testing-library/jest-dom"]
247
},
258
"include": [

0 commit comments

Comments
 (0)