microsoft / microsoft/TypeScript

"basic"/"relative" moduleResolution

未关闭
#62,368 3 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

Awaiting More Feedback Suggestion
主要语言
Go
星标
111k
派生
14.3k
平均合并
2 天 4 小时
30 天内合并 PR
132

描述

🔍 Search Terms

module resolution, relative paths

✅ Viability Checklist
⭐ Suggestion

Hi all, I am writing a custom JavaScript runtime that only supports module imports using relative paths with file extensions present.

This is akin to browser-based module resolution (minus import maps).

At present, the compilerOptions.moduleResolution settings are:

  • classic (deprecated)
  • node/node10
  • node16
  • nodenext
  • bundler

I think classic might work but am hesitant to use a deprecated feature.

Could we include a

{
  "compilerOptions": {
    "moduleResolution": "relative"
  }
}

That only permits resolving module import paths that are relative to the current file and requires that import paths include file extensions?

import * as foo from "./foo.js" // 👍 
import * as foo from "./foo.ts" // 👍 

import * as foo from "./foo" // 👎 
import * as foo from "foo" // 👎 
📃 Motivating Example
💻 Use Cases
  1. Accurate import semantics for consumers not using Node.js or contexts compatible with Node.js import resolution semantics

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

调研方向

首先阅读编译器如何处理现有的模块解析选项 classic、node10、node16、nodenext 和 bundler。跟踪 compilerOptions.moduleResolution 入口点,并比较当前针对相对导入和包导入的测试。完成的标准是:新的相对模式接受带扩展名的相对导入,同时拒绝不带扩展名的导入和非相对导入,并覆盖所请求的示例。

由索引模型根据 Issue 内容生成。

评估

技术栈
javascript, typescript
领域
compilers
Issue 类型
功能
难度
5/5
预计耗时
一周以上
活跃度
停滞
描述清晰度
基本清楚
新手友好度
30/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。