microsoft / microsoft/TypeScript
CommonJS globals permitted for ES module builds with no compiler error.
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.4k
- Merge medio
- 1g 19h
- PR unite (30g)
- 117
Descrizione
🔎 Search Terms
nodenext, module, __dirname
🕗 Version & Regression Information
Version 5.4.5
⏯ Playground Link
No response
💻 Code
package.json
"type": "module"
tsconfig.json
{
"compilerOptions": {
"module": "NodeNext"
},
"include": ["src"]
}
file.ts
console.log(__dirname)
🙁 Actual behavior
No compiler error, but this causes a runtime error in Node:
ReferenceError: __dirname is not defined in ES module scope
🙂 Expected behavior
That the compiler issues an error similar to the inverse situation.
For example, when targeting CommonJS:
package.json
"type": "commonjs"
file.ts
console.log(import.meta.dirname)
The compiler issues the following error:
error TS1470: The 'import.meta' meta-property is not allowed in files which will build into CommonJS output.
Additional information about the issue
Perhaps there is a good reason for this that I'm not understanding, but I would think tsc should issue an error or warning for any syntax that would produce a runtime error.
Here is a more complete example: https://github.com/knightedcodemonkey/tsc-module-globals
npm installnpm run esm(note no compile error but the output causes a runtime error)npm run cjs(note there is a compile error)
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Riproduci il problema con package.json, tsconfig.json e file.ts usando i comandi npm run esm e npm run cjs indicati. Confronta la diagnostica CommonJS esistente per import.meta con il caso __dirname del modulo ES; l’attività è completata quando la build del modulo ES NodeNext segnala il global CommonJS non valido prima del runtime.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- node.js, typescript
- Ambito
- compilers
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 38/100