Skip to content

Commit

Permalink
fix(test): typedoc signature test issues (#2280)
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Aug 3, 2023
1 parent 87eca26 commit 02fc7ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/apidoc/typedoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export function loadProject(
entryPoints: ['src/index.ts'],
pretty: true,
cleanOutputDir: true,
tsconfig: 'tsconfig.build.json',
}
): [Application, ProjectReflection] {
const app = newTypeDocApp();
Expand Down
7 changes: 6 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
},
"exclude": ["node_modules", "dist"]
"exclude": [
"node_modules",
"dist",
// required for the typedoc related tests on macOS #2280
"test/scripts/apidoc/temp"
]
}

0 comments on commit 02fc7ca

Please sign in to comment.