From 999c350b0379f7f275ba76f0941d344f916a2bbc Mon Sep 17 00:00:00 2001 From: Lars Vierbergen Date: Thu, 21 Mar 2024 15:24:12 +0100 Subject: [PATCH] Fix module resolution for ES6 --- config/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/tsconfig.json b/config/tsconfig.json index 8036079..b979bea 100644 --- a/config/tsconfig.json +++ b/config/tsconfig.json @@ -27,7 +27,7 @@ /* Modules */ "module": "ES6", /* Specify what module code is generated. */ "rootDir": "./src", /* Specify the root folder within your source files. */ - "moduleResolution": "node16", /* Specify how TypeScript looks up a file from a given module specifier. */ + "moduleResolution": "Bundler", /* Specify how TypeScript looks up a file from a given module specifier. */ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */