Skip to content

Commit 5aca58c

Browse files
committed
Add tsconfig.build.json
1 parent 491defd commit 5aca58c

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Options } from 'tsup';
22
import { defineConfig } from 'tsup';
33

4-
const tsconfig = 'tsconfig.json' satisfies Options['tsconfig'];
4+
const tsconfig = 'tsconfig.build.json' satisfies Options['tsconfig'];
55

66
export default defineConfig((options): Options[] => {
77
const commonOptions: Options = {

0 commit comments

Comments
 (0)