From 43e8f4cb749732d41806cf2d9d03cfaca13d0393 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Wed, 8 Oct 2025 14:27:35 +0200 Subject: [PATCH] fix for minimatch bug --- core/tsconfig.json | 3 ++- shared/tsconfig.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/core/tsconfig.json b/core/tsconfig.json index b8e0f1d0a..f4fef84fa 100644 --- a/core/tsconfig.json +++ b/core/tsconfig.json @@ -47,7 +47,8 @@ // "baseUrl": ".", /* Base directory to resolve non-absolute module names. */ // "paths": { }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ // "rootDirs": [".", "../database"], /* List of root folders whose combined content represents the structure of the project at runtime. */ - // "typeRoots": [], /* List of folders to include type definitions from. */ + /* List of folders to include type definitions from. */ + "typeRoots": ["./node_modules/@types", "../node_modules/@types"], // "types": ["bun-types"], /* Type declaration files to be included in compilation. */ // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ diff --git a/shared/tsconfig.json b/shared/tsconfig.json index 079edaac8..b0f86e654 100644 --- a/shared/tsconfig.json +++ b/shared/tsconfig.json @@ -47,7 +47,8 @@ // "baseUrl": ".", /* Base directory to resolve non-absolute module names. */ // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ // "rootDirs": [".", "../database"], /* List of root folders whose combined content represents the structure of the project at runtime. */ - "typeRoots": ["./node_modules/@types", "../node_modules/@types"], /* List of folders to include type definitions from. */ + /* List of folders to include type definitions from. */ + "typeRoots": ["./node_modules/@types", "../node_modules/@types"], // "types": ["bun-types"], /* Type declaration files to be included in compilation. */ // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */