question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

ignore node_modules

See original GitHub issue

Couldn’t find an option to ignore node_modules, is there a way to stop at user created interface depth

I have this interface:

import {Request, Response} from 'express';

export interface MyRequest extends Request {
    body: something;
}

Calling typescript-json-schema results in the whole express types

Issue Analytics

  • State:open
  • Created 6 years ago
  • Reactions:3
  • Comments:6

github_iconTop GitHub Comments

1reaction
philcockfieldcommented, Nov 8, 2018

Although, I just figured out passing ignoreErrors to the build-generator gets me over this problem.

0reactions
philcockfieldcommented, Nov 8, 2018

OK, thanks - I’ll take a look. BTW, thanks so much for making this…this is a really impressively useful tool!

Read more comments on GitHub >

github_iconTop Results From Across the Web

node modules - Git - Ignore node_modules folder everywhere
Open sourcetree; click particular project; click settings; click Advanced; click Edit gitignore; Write "node_modules"; And Save.
Read more >
Git ignore node modules - Simple Solution and Common ...
Gotcha #2 - node_modules already committed. If you've already committed node_modules , you'll need to first remove the directory from git index.
Read more >
How to ignore the node_modules folder in Git? - Tim Mousk
To ignore the node_modules folder, you must create a .gitignore file. Then write the folder name to ignore it. ... Sometimes, however, a...
Read more >
Exclude node_modules Folder from Git using .gitignore
The best way to exclude a folder from Git is to add a .gitignore file to the root of the project. This file...
Read more >
Exclude node_modules folder with .gitignore file
Exclude node_modules folder with .gitignore file ... The node_modules/ folder is the folder where all packages required by your JavaScript project ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found