Skip to content

Commit

Permalink
Disable type checking vega-lite libraries.
Browse files Browse the repository at this point in the history
Typscript 3.7 throws some errors when compiling Vega-lite 2 and 3, so we turn off lib checks.

This was investigated much more deeply in jupyterlab#7428, where we deleted the vega 4 extension and upgraded the vega 5 extension to vega-lite 4.0b11. The vega-lite upgrade was not going smoothly, so we moved it to a separate issue and redid the Typescript upgrade by just using the skipLibCheck flag.
  • Loading branch information
jasongrout committed Nov 14, 2019
1 parent 6bfe84f commit 4029c13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/vega4-extension/tsconfig.json
Expand Up @@ -2,6 +2,7 @@
"extends": "../../tsconfigbase",
"compilerOptions": {
"outDir": "lib",
"skipLibCheck": true,
"types": ["webpack-env"],
"rootDir": "src"
},
Expand Down
1 change: 1 addition & 0 deletions packages/vega5-extension/tsconfig.json
Expand Up @@ -2,6 +2,7 @@
"extends": "../../tsconfigbase",
"compilerOptions": {
"outDir": "lib",
"skipLibCheck": true,
"types": ["webpack-env"],
"rootDir": "src"
},
Expand Down

0 comments on commit 4029c13

Please sign in to comment.