]> Piment Noir Git Repositories - poolifier.git/commitdiff
fix(build): add explicit rootDir and module/moduleResolution for TS 6.0 compatibility
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 24 Mar 2026 11:38:10 +0000 (12:38 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 24 Mar 2026 11:38:10 +0000 (12:38 +0100)
.serena/project.yml
rollup.config.mjs
tsconfig.build.json

index f6de8bccdc359305947de11376d8d8a15ab8a234..61e025d629c32f4d9c37a54cad5d6fe9936a7194 100644 (file)
@@ -123,3 +123,17 @@ read_only_memory_patterns: []
 # Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default)
 # This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings.
 line_ending:
+
+# list of regex patterns for memories to completely ignore.
+# Matching memories will not appear in list_memories or activate_project output
+# and cannot be accessed via read_memory or write_memory.
+# To access ignored memory files, use the read_file tool on the raw file path.
+# Extends the list from the global configuration, merging the two lists.
+# Example: ["_archive/.*", "_episodes/.*"]
+ignored_memory_patterns: []
+
+# advanced configuration option allowing to configure language server-specific options.
+# Maps the language key to the options.
+# Have a look at the docstring of the constructors of the LS implementations within solidlsp (e.g., for C# or PHP) to see which options are available.
+# No documentation on options means no options are available.
+ls_specific_settings: {}
index 3676db4fdb59d63713739fd7d588755c50b06af0..a5ae1a02172206bc814a5e01f9d845a39142af02 100644 (file)
@@ -73,6 +73,8 @@ export default defineConfig([
     plugins: [
       typescript({
         compilerOptions: {
+          module: 'Node16',
+          moduleResolution: 'Node16',
           sourceMap: sourcemap,
         },
         tsconfig: './tsconfig.build.json',
index f7465e060ff140b6d39467714cb6660447952293..c34b38c20b7aff467d42a15de20c494ab7f6c48e 100644 (file)
@@ -1,5 +1,8 @@
 {
   "extends": "./tsconfig.json",
+  "compilerOptions": {
+    "rootDir": "./src"
+  },
   "exclude": [
     "node_modules",
     "lib",