Skip to content

Commit 9973256

Browse files
committed
Fix tsconfig.json
1 parent 5aca58c commit 9973256

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

packages/rtk-query-codegen-openapi/tsconfig.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,27 @@
44
"allowSyntheticDefaultImports": true,
55
"checkJs": true,
66
"declaration": true,
7+
"downlevelIteration": false,
78
"esModuleInterop": true,
89
"forceConsistentCasingInFileNames": true,
10+
"importHelpers": true,
911
"isolatedModules": true,
12+
"jsx": "react",
1013
"module": "ESNext",
1114
"moduleResolution": "Bundler",
15+
"noEmit": true,
16+
"noErrorTruncation": true,
17+
"noImplicitReturns": true,
1218
"noUnusedLocals": false,
1319
"outDir": "lib",
1420
"paths": {
15-
"@rtk-query/codegen-openapi": ["./src/index.ts"] // @remap-prod-remove-line
21+
"@rtk-query/codegen-openapi": ["./src"] // @remap-prod-remove-line
1622
},
1723
"resolveJsonModule": true,
18-
"rootDir": ".",
1924
"skipLibCheck": true,
2025
"sourceMap": true,
2126
"strict": true,
2227
"target": "ESNext",
23-
"types": ["vitest/globals", "vitest/importMeta"],
24-
"useDefineForClassFields": true,
25-
"useUnknownInCatchVariables": true
26-
},
27-
"exclude": ["test", "lib", "vitest.config.mts"],
28-
"include": ["src"]
28+
"types": ["vitest/globals", "vitest/importMeta"]
29+
}
2930
}

0 commit comments

Comments
 (0)