We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
configFile
1 parent 6a368d6 commit 356ab48Copy full SHA for 356ab48
src/normalize-options.ts
@@ -94,10 +94,12 @@ export function normalizeOptions(
94
mainFields: defaultMainFields,
95
...options,
96
project,
97
- tsconfig: {
98
- references: references ?? 'auto',
99
- configFile: configFile || '',
100
- },
+ tsconfig: configFile
+ ? {
+ references: references ?? 'auto',
+ configFile: configFile,
101
+ }
102
+ : undefined,
103
}
104
105
if (configFile) {
0 commit comments