-
Notifications
You must be signed in to change notification settings - Fork 710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AssertionError [ERR_ASSERTION]: probably because nested folder also contain node_modules #1462
Comments
when config does not exclude node_modules: {
"entryPoints": [
"./src"
],
"exclude": [],
"out": "./docs"
} using
|
when config exclude the folder {
"entryPoints": [
"./src"
],
"exclude": [
"**/src/resources/side-effects/**"
],
"out": "./docs"
} using
|
{
"entryPoints": [
"./src"
],
"exclude": [
"./src/resources"
],
"out": "./docs"
}
output of
|
So... there are a few problems here.
|
Search terms
Error with sub-packages (node_modules)... Can't load the nested package.json
Expected Behavior
the output of the documentation or splitting the project to have the documentation of each parts or sub-modules (i.e. sub npm modules)
Actual Behavior
Steps to reproduce the bug
How you are running TypeDoc + any relevant configuration files
npx typedoc
yarn install
)npm install
)Environment
echo -ne '\ntypedoc --version'; npx typedoc --version; echo -e '\ntsc --version'; npx tsc --version;echo -e '\nnode --version'; node --version; echo -e '\nuname -srvo' ; uname -srvo
typedoc --version
TypeDoc 0.20.13
Using TypeScript 4.1.3 from /home/luxcium/dev/questrade-ts/node_modules/typescript/lib
tsc --version
Version 4.1.3
node --version
v15.5.1
uname -srvo
Linux 5.9.16-100.fc32.x86_64 Name of commandline tool #1 SMP Mon Dec 21 14:10:00 UTC 2020 GNU/Linux
The text was updated successfully, but these errors were encountered: