microsoft / microsoft/TypeScript
TypeScript 3.9: Type files are behaving like included files
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.3k
- Merge medio
- 1g 19h
- PR unite (30g)
- 117
Descrizione
I'm trying to use the new TypeScript code editor support for solution projects and it's working pretty well, but has the issue mentioned in the title.
When I add typeRoots or a type file, the referenced file isn't used just to get types from it. Instead, it acts like an included file for that project and the file's type checking follows that project configuration in the editor.
tsconfig.json
{
"files": [],
"references": [
{
"path": "./tsconfig.client.json"
},
{
"path": "./tsconfig.server.json"
},
{
"path": "./tsconfig.shared.json"
}
]
}
tsconfig.base.json
{
"compilerOptions": {
"baseUrl": "./",
"composite": true,
"declarationDir": "./@types",
"emitDeclarationOnly": true,
"lib": [
"ES5"
],
"target": "ES5",
"typeRoots": [
"node_modules/@types/",
"lib/types/"
]
}
}
tsconfig.client.json
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"lib": [
"ES6",
"DOM"
],
"target": "ES6",
"types": [
"client",
"shared" // This line is the problem
]
},
"exclude": [
"lib/types/shared/"
],
"include": [
"lib/types/client/"
]
}
tsconfig.shared.json
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"types": [
"shared"
]
},
"include": [
"lib/types/shared/"
]
}
lib/types/shared/index.d.ts
type ShouldNotHaveDomLib = Element; // This works, but should output an error
It seems like an issue with VSCode as building the project with "tsc --build" does throw the expected error:
lib/types/shared/index.d.ts:1:28 - error TS2304: Cannot find name 'Element'.
1 type ShouldNotHaveDomLib = Element;
I found that removing the "shared" types from tsconfig.client.json made the client types unavaliable as expected, but then made the server ones avaliable, as the "server" project is the second on the reference list.
With this, I found a very simple solution: put "shared" project as the first referenced in "tsconfig.json"
{
"files": [],
"references": [
{
"path": "./tsconfig.shared.json"
},
{
"path": "./tsconfig.client.json"
},
{
"path": "./tsconfig.server.json"
}
]
}
This solves the issue for me and yes, building the shared project first should be the standard, so not a huge deal for people using this project pattern. Still, it still is an unexpected behaviour and there might be some other patterns where this is a bigger issue.
I searched for issues here, on TypeScript and Javascript and Typescript Nightly and found nothing, so I apologize if this is a duplicate and/or should be reported to one of those repositories.
- VSCode Version: 1.44.2 (testes in latest insider too)
- OS Version: Windows 10 19608
Steps to Reproduce:
- Download the Javascript and Typescript Nightly extension
- Set up project as above
- Add some types to types/client/index.d.ts
- Try to use those types in types/server/index.d.ts
Does this issue occur when all extensions are disabled?: No, because I do need the Javascript and Typescript Nightly extension to use TS 3.9 features. However, it still happens while using it with only this extension.
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 la configurazione utilizzando tsconfig.json, tsconfig.base.json, tsconfig.client.json, tsconfig.shared.json e lib/types/shared/index.d.ts, quindi confronta il comportamento dell’editor con tsc --build. Analizza il modo in cui l’editor TypeScript gestisce i file di tipi referenziati e la configurazione del progetto; il lavoro è completato quando l’editor segnala l’errore previsto per l’assenza di Element, mantenendo i tipi referenziati client e server.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- typescript, vscode
- Ambito
- compilers, developer-experience
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 38/100