@@ -3,24 +3,26 @@ project_name: "aws-lambda-mcp-server"
33
44
55# list of languages for which language servers are started; choose from:
6- # al ansible bash clojure cpp
7- # cpp_ccls crystal csharp csharp_omnisharp dart
8- # elixir elm erlang fortran fsharp
9- # go groovy haskell haxe hlsl
10- # java json julia kotlin lean4
11- # lua luau markdown matlab msl
12- # nix ocaml pascal perl php
13- # php_phpactor powershell python python_jedi python_ty
14- # r rego ruby ruby_solargraph rust
15- # scala solidity swift systemverilog terraform
16- # toml typescript typescript_vts vue yaml
17- # zig
6+ # al angular ansible bash clojure
7+ # cpp cpp_ccls crystal csharp csharp_omnisharp
8+ # dart elixir elm erlang fortran
9+ # fsharp go groovy haskell haxe
10+ # hlsl html java json julia
11+ # kotlin lean4 lua luau markdown
12+ # matlab msl nix ocaml pascal
13+ # perl php php_phpactor powershell python
14+ # python_jedi python_ty r rego ruby
15+ # ruby_solargraph rust scala scss solidity
16+ # swift systemverilog terraform toml typescript
17+ # typescript_vts vue yaml zig
1818# (This list may be outdated. For the current list, see values of Language enum here:
1919# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
2020# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
2121# Note:
2222# - For C, use cpp
2323# - For JavaScript, use typescript
24+ # - For Angular projects, use angular (subsumes typescript+html; requires `npm install` in the project root)
25+ # - For SCSS / Sass / plain CSS, use scss (some-sass-language-server handles all three)
2426# - For Free Pascal/Lazarus, use pascal
2527# Special requirements:
2628# Some languages require additional setup/installations.
@@ -125,3 +127,14 @@ ignored_memory_patterns: []
125127# The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes.
126128# See https://oraios.github.io/serena/02-usage/050_configuration.html#modes
127129added_modes :
130+
131+ # list of additional workspace folder paths for cross-package reference support (e.g. in monorepos).
132+ # Paths can be absolute or relative to the project root.
133+ # Each folder is registered as an LSP workspace folder, enabling language servers to discover
134+ # symbols and references across package boundaries.
135+ # Currently supported for: TypeScript.
136+ # Example:
137+ # additional_workspace_folders:
138+ # - ../sibling-package
139+ # - ../shared-lib
140+ additional_workspace_folders : []
0 commit comments