Microsoft/TypeScript

"File name X differs from Y only in casing." problem when using webpack style path alias

Open

#53,767 创建于 2023年4月13日

在 GitHub 查看
 (0 评论) (1 反应) (0 负责人)TypeScript (6,726 fork)batch import
BugDomain: Module ResolutionHelp Wanted

仓库指标

Star
 (48,455 star)
PR 合并指标
 (平均合并 6天 17小时) (30 天内合并 9 个 PR)

描述

Type: Bug

I am using webpack-style path aliases for Javascript imports. For example:

import { Pricing } from 'SRC/pricing.mjs';

with a jsconfig.json that looks like this:

{
    "compilerOptions": {
      "module": "es6",
      "target": "es6",
    },
    "baseUrl": ".",
    "paths": {
      "SRC/*": ["./src/*"]
    }
}

With the result that SRC/pricing.mjs is replaced with {baseurl}/src/pricing.mjs no matter what directory the importing code lives in.

This works fine, however I get warnings like the following in the 'Problems' view:

File name '<path to project>/SRC/pricing.mjs' differs from already included file name '<path to project>/src/pricing.mjs' only in casing.
  The file is in the program because:
    Matched by default include pattern '**/*'
    Imported via 'SRC/pricing.mjs' from file '<path to project>/src/page/index-client.js'
    Imported via 'SRC/pricing.mjs' from file '<path to project>/src/page/index-html.js'
    Imported via 'SRC/pricing.mjs' from file '<path to project>/src/page/pricing-calculator-client.js'
    Imported via 'SRC/pricing.mjs' from file '<path to project>/src/page/pricing-calculator-html.js'

I think the code that checks for case insensitivity issues might not be fully / correctly aware of how jsconfig.son path aliases work.

I can workaround the issue by adding "forceConsistentCasingInFileNames": false to compilerOptions however then I don't get the general benefit of this problem detection.

If I use SRC2 or $SRC instead of SRC everything is fine.

VS Code version: Code 1.77.3 (Universal) (704ed70d4fd1c6bd6342c436f1ede30d1cff4710, 2023-04-12T09:19:37.325Z) OS version: Darwin arm64 22.4.0 Modes: Sandboxed: Yes

Item Value
CPUs Apple M1 Pro (10 x 24)
GPU Status 2d_canvas: enabledcanvas_oop_rasterization: disabled_offdirect_rendering_display_compositor: disabled_off_okgpu_compositing: enabledmetal: disabled_offmultiple_raster_threads: enabled_onopengl: enabled_onrasterization: enabledraw_draw: disabled_off_okskia_renderer: enabled_onvideo_decode: enabledvideo_encode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabledwebgpu: disabled_off
Load (avg) 2, 2, 2
Memory (System) 16.00GB (0.23GB free)
Process Argv --disable-extensions . --crash-reporter-id eef3215b-4736-49de-82a2-9fef6d51c723
Screen Reader no
VM 0%
vsliv368cf:30146710
vsreu685:30147344
python383:30185418
vspor879:30202332
vspor708:30202333
vspor363:30204092
vslsvsres303:30308271
vserr242cf:30382550
pythontb:30283811
vsjup518:30340749
pythonptprofiler:30281270
vshan820:30294714
vstes263cf:30335440
vscorecescf:30445987
pythondataviewer:30285071
vscod805cf:30301675
binariesv615:30325510
bridge0708:30335490
bridge0723:30353136
cmake_vspar411:30581797
vsaa593cf:30376535
pythonvs932:30410667
cppdebug:30492333
vscaac:30438847
vsclangdc:30486549
c4g48928:30535728
dsvsc012:30540252
pynewext54:30695312
azure-dev_surveyonecf:30548226
nodejswelcome1cf:30587006
2e4cg342:30602488
pyind779:30671433
89544117:30613380
vscrp:30673768
pythonsymbol12:30671437
2i9eh265:30646982
vsctsb:30705553
pythonb192:30669360
defaultazurewalk:30687958
pythonms35:30701012
pythonclientmv:30708685

贡献者指南