microsoft / microsoft/TypeScript
"basic"/"relative" moduleResolution
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Go
- Sterne
- 111k
- Forks
- 14.3k
- Ø Merge
- 2 T. 4 Std.
- Gemergte PRs (30 T.)
- 132
Beschreibung
### 🔍 Search Terms
module resolution, relative paths
### ✅ Viability Checklist
- [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
- [x] This wouldn't change the runtime behavior of existing JavaScript code
- [x] This could be implemented without emitting different JS based on the types of the expressions
- [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, new syntax sugar for JS, etc.)
- [x] This isn't a request to add a new utility type: https://github.com/microsoft/TypeScript/wiki/No-New-Utility-Types
- [x] This feature would agree with the rest of our Design Goals: https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals
### ⭐ 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
```json
{
"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?
```typescript
import * as foo from "./foo.js" // 👍
import * as foo from "./foo.ts" // 👍
import * as foo from "./foo" // 👎
import * as foo from "foo" // 👎
```
### 📃 Motivating Example
- Browsers using JavaScript modules without a bundler
- Custom JavaScript resolution algorithms
- (shameless plug) https://github.com/alshdavid/ion
### 💻 Use Cases
1. Accurate import semantics for consumers not using Node.js or contexts compatible with Node.js import resolution semantics
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Lies zunächst, wie der Compiler die vorhandenen Modulauflösungsoptionen classic, node10, node16, nodenext und bundler behandelt. Verfolge den Einstiegspunkt compilerOptions.moduleResolution und vergleiche die aktuellen Tests für relative und Paketimporte. Das Ziel ist erreicht, wenn ein neuer relativer Modus relative Importe mit Erweiterung akzeptiert, während er Importe ohne Erweiterung und nicht-relative Importe ablehnt, mit Abdeckung der angeforderten Beispiele.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- javascript, typescript
- Bereich
- compilers
- Issue-Typ
- Feature
- Schwierigkeit
- 5/5
- Geschätzter Aufwand
- Über eine Woche
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 30/100