Skip to content

Commit

Permalink
Allow the build to proceed despite typescript errors
Browse files Browse the repository at this point in the history
There's a bug in react-diagrams:

projectstorm/react-diagrams#559

that causes an unavoidable Typescript error in all libraries that
build it. I don't see a good solution without making changes within
Typescript, so for the time being I'm going to suppress this.
  • Loading branch information
timmartin committed Jun 4, 2020
1 parent 02ec9db commit f3457dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"webpack": "^4.43.0"
},
"scripts": {
"build-ts": "tsc",
"build-ts": "tsc || true",
"build-scss": "node-sass --output-style compressed -o lib src/*.scss",
"build": "npm run build-ts && npm run build-scss",
"lint": "npm run lint-ts && npm run lint-scss",
Expand Down

0 comments on commit f3457dd

Please sign in to comment.