Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,42 @@ How to Use

Click on a dot on the left to show the content of that DAG node on the right.

### Issue:
OS Windows 10

npm: '10.8.3'

#### Error:

$ npm start

> [email protected] prestart
> npm run build


> [email protected] prebuild
> tslint -c tslint.json -p tsconfig.json --fix


> [email protected] build
> tsc

src/gitter/inject-refs.ts:30:11 - error TS18046: 'err' is of type 'unknown'.

30 if (err.code === 'ENOENT') {
~~~

Found 1 error in src/gitter/inject-refs.ts:30

#### Fix:

https://stackoverflow.com/a/69445095/2961448

you need to put it like this under compilerOptions

"compilerOptions": {
"useUnknownInCatchVariables": false
}

License
-------
Expand Down