From de3b8bbeace862a4ad2014793aa3f4366815ee88 Mon Sep 17 00:00:00 2001 From: Kilian Panot Date: Mon, 9 Dec 2024 19:57:58 +0900 Subject: [PATCH] fix: add search exclusion and TS options --- .vscode/settings.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6ea7721346..243164b8b1 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -94,5 +94,17 @@ "@o3r/core:*" ], "otter.extract.styling.prefix": "o3r", + "search.exclude": { + "**/.yarn": true, + "**/.pnp.*": true, + "**/dist/": true, + "**/build/": true, + "**/node_modules": true, + "**/.cache": true, + "**/src/package.json": true, + "tools/github-actions/*/packaged-action/**": true + }, + "typescript.enablePromptUseWorkspaceTsdk": true, + "typescript.tsdk": ".yarn/sdks/typescript/lib", "typescript.tsserver.watchOptions": "vscode" }