Is it possible to configure vs code such way that import will use absolute path (not relative)?

前端 未结 1 472
孤独总比滥情好
孤独总比滥情好 2021-02-14 21:34

VSCode after the last update now knows how to automatically add imports. However it adds using relative paths - any idea if that is somehow configurable?

相关标签:
1条回答
  • 2021-02-14 22:20

    It is configurable if you are using VS Code 1.24 and TypeScript >= 2.9.

    From the release notes,

    Preferences for auto imports and generated code

    You can now explicitly specify the quote and path styles that VS Code uses for auto imports and other generated JavaScript and TypeScript code.

    [...]

    The javascript.preferences.importModuleSpecifier and typescript.preferences.importModuleSpecifier settings specify the type of path to use for imports.

    Valid values are:

    • "relative" to the file location.
    • "non-relative" based on the baseUrl configured in your jsconfig.json / tsconfig.json.
    • "auto" to infer the shortest path type.

    These new preferences require TypeScript 2.9+.

    0 讨论(0)
提交回复
热议问题