Skip to content

Commit

Permalink
fix: Ignore configFilePath when reading TS options
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Jan 11, 2020
1 parent 930aac1 commit 62314da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib/utils/options/sources/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ const IGNORED_OPTIONS = [
'inlineSources',
'removeComments',
'incremental',
'tsBuildInfoFile'
'tsBuildInfoFile',
// This is not a TS option, but TypeScript will add it to the compiler options
// so we need to remove it or TypeDoc will error since it isn't declared.
'configFilePath'
] as const;

/**
Expand Down

0 comments on commit 62314da

Please sign in to comment.