Skip to content

Commit

Permalink
who developed this package ecosystem anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw committed May 30, 2024
1 parent a96a9a4 commit 07907fb
Show file tree
Hide file tree
Showing 3 changed files with 12,010 additions and 164 deletions.
2 changes: 1 addition & 1 deletion _scripts/run_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def compile_ts_code(ts_code: str, tsconfig_options: list) -> str:
temp_file_path = "temp.ts"
with open(temp_file_path, "w") as f:
f.write(ts_code)
cmd = ["npx", "tsc", temp_file_path] + tsconfig_options
cmd = ["npx", "tsc", temp_file_path] + tsconfig_options + ["--skipLibCheck"]
try:
result = subprocess.run(cmd, capture_output=True, text=True, check=True)
stdout = result.stdout
Expand Down
Loading

0 comments on commit 07907fb

Please sign in to comment.