@pmnps/plugin-vscode-workspace
v4.5.0
Published
This is a pmnps plugin for refreshing vscode-workspace file.
Maintainers
Readme
@pmnps/plugin-vscode-workspace
You might be troubled by the problem about can not find tsconfig in projects, when using pmnps.
This plugin will run in refresh command, it creates a .code-workspace file, so, we can use pmnps more better in vscode, and resolve the can not find tsconfig problem.
If you are not familiy with vscode multi workspace, please take this reference.
Usage
Config the .pmnpsrc.json:
{
...,
"plugins":[
"@pmnps/plugin-vscode-workspace"
]
}If you want to exclude the folders which you don't want to show in vscode workspace, use query config:
{
...,
"plugins":[
[
"@pmnps/plugin-vscode-workspace",
{
"excludes":["root","packages/@template"]
}
]
]
}