diff options
author | 2021-08-12 02:01:10 -0700 | |
---|---|---|
committer | 2021-08-12 02:01:10 -0700 | |
commit | 882c96339839b49fe7da6f0dc3741089836c9204 (patch) | |
tree | 8cc6de95af50ed54702449b83fcd93bc02dfaf3a | |
parent | 4d61ce4dd7d0e83e5ef71048874b86a8c9fdd4af (diff) | |
download | bun-882c96339839b49fe7da6f0dc3741089836c9204.tar.gz bun-882c96339839b49fe7da6f0dc3741089836c9204.tar.zst bun-882c96339839b49fe7da6f0dc3741089836c9204.zip |
Support tsconfig.json "paths" (instead of just "baseUrl")
Former-commit-id: 3780a0cbb033aa7524e220d247067e02af70d998
-rw-r--r-- | src/bundler.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bundler.zig b/src/bundler.zig index 5d1a91370..49b9f496b 100644 --- a/src/bundler.zig +++ b/src/bundler.zig @@ -819,7 +819,6 @@ pub fn NewBundler(cache_files: bool) type { }; fn processImportRecord(this: *GenerateNodeModuleBundle, import_record: ImportRecord) !void {} - const node_module_root_string = std.fs.path.sep_str ++ "node_modules" ++ std.fs.path.sep_str; threadlocal var package_key_buf: [512]u8 = undefined; threadlocal var file_path_buf: [4096]u8 = undefined; fn processFile(this: *GenerateNodeModuleBundle, _resolve: _resolver.Result) !void { |