Skip to content

Commit c855225

Browse files
committed
Ignore tsc error in node_modules
Sometimes jupyterlab related things just break for no reason? I want to keep moving with dev so do this. Also add back `jlpm install`, somehow I removed this..?
1 parent daefb6f commit c855225

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

dev.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,5 @@ RUN --mount=type=cache,target=/root/.cache/pip \
6565
pip install -e ".[test]"
6666
RUN jupyter labextension develop . --overwrite
6767
RUN jupyter server extension enable jupyterlab_code_formatter
68+
RUN jlpm install
6869
RUN jlpm build

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"strict": true,
1919
"strictNullChecks": true,
2020
"target": "ES2018",
21-
"types": ["jest"]
21+
"types": ["jest"],
22+
"skipLibCheck": true
2223
},
2324
"include": ["src/*"]
2425
}

0 commit comments

Comments
 (0)