We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tsconfig.build.json
1 parent 491defd commit 5aca58cCopy full SHA for 5aca58c
packages/rtk-query-codegen-openapi/tsconfig.build.json
@@ -0,0 +1,11 @@
1
+{
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "allowJs": false,
5
+ "checkJs": false,
6
+ "module": "ESNext",
7
+ "noEmit": false,
8
+ "rootDir": "src"
9
+ },
10
+ "include": ["src"]
11
+}
packages/rtk-query-codegen-openapi/tsup.config.ts
@@ -1,7 +1,7 @@
import type { Options } from 'tsup';
import { defineConfig } from 'tsup';
-const tsconfig = 'tsconfig.json' satisfies Options['tsconfig'];
+const tsconfig = 'tsconfig.build.json' satisfies Options['tsconfig'];
export default defineConfig((options): Options[] => {
const commonOptions: Options = {
0 commit comments