This package provides shared engineering dependencies for the Azure extensions for Visual Studio Code.
In addition, universal and recommended configurations are provided. They can be overridden as needed by the projects.
- Common/base
.vscode/items, e.g..vscode/extensions.json,.vscode/launch.json, etc.- These could be just reference items that consumers can copy into their own projects, or if we want to get fancy, we could do it on install.
- Common/base
tsconfig.jsonitems - Common/base ignores, e.g.
.npmignore,.vscodeignore- These could be just reference items that consumers can copy into their own projects, or if we want to get fancy, we could do it on install.
- Use
tsgo(TypeScript native) instead oftsc. Correspondingly, use native language server.
- Don't put
@types/vscodeor avscodeengine version into this package--that should remain up to the consuming extensions. - Don't put
@types/nodeinto this package--that should remain up to the consuming extensions.