summaryrefslogtreecommitdiff
path: root/packages/vscode-ide-companion
diff options
context:
space:
mode:
authorGal Zahavi <[email protected]>2025-08-14 13:40:12 -0700
committerGitHub <[email protected]>2025-08-14 20:40:12 +0000
commit980091cbc2a809690dbd401c16ec3ac34da56083 (patch)
tree5bdadbdbebcaf6471f753ef31ef3fdc6a7716ae3 /packages/vscode-ide-companion
parent48af0456c1883834a83ae74281f0c871129779d8 (diff)
feat(core): refactor shell execution to use node-pty (#6088)
Diffstat (limited to 'packages/vscode-ide-companion')
-rw-r--r--packages/vscode-ide-companion/tsconfig.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/vscode-ide-companion/tsconfig.json b/packages/vscode-ide-companion/tsconfig.json
index 2fec2bd9..b3e700de 100644
--- a/packages/vscode-ide-companion/tsconfig.json
+++ b/packages/vscode-ide-companion/tsconfig.json
@@ -6,7 +6,8 @@
"lib": ["ES2022", "dom"],
"sourceMap": true,
"rootDir": "src",
- "strict": true /* enable all strict type-checking options */
+ "strict": true /* enable all strict type-checking options */,
+ "skipLibCheck": true /* Helps avoid potential type conflicts between different third-party libraries in node_modules. */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */