mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Remove unused top level configs
This commit is contained in:
114
.vscode/launch.json
vendored
114
.vscode/launch.json
vendored
@ -1,114 +0,0 @@
|
||||
// A launch configuration that compiles the extension and then opens it inside a new window
|
||||
{
|
||||
"version": "0.1.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch Completions Sample",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceRoot}/completions-sample"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/completions-sample/out/**/*.js"
|
||||
],
|
||||
"preLaunchTask": "compile-completions"
|
||||
},
|
||||
{
|
||||
"name": "Launch Decorator Sample",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceRoot}/decorator-sample"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/decorator-sample/out/**/*.js"
|
||||
],
|
||||
"preLaunchTask": "compile-decorator"
|
||||
},
|
||||
{
|
||||
"name": "Launch Preview Html Sample",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceRoot}/previewhtml-sample"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/previewhtml-sample/out/**/*.js"
|
||||
],
|
||||
"preLaunchTask": "compile-previewhtml"
|
||||
},
|
||||
{
|
||||
"name": "Launch Content Provider Sample",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceRoot}/contentprovider-sample"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/contentprovider-sample/out/**/*.js"
|
||||
],
|
||||
"preLaunchTask": "compile-contentprovider"
|
||||
},
|
||||
{
|
||||
"name": "Launch Status Bar Sample",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceRoot}/statusbar-sample"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/statusbar-sample/out/**/*.js"
|
||||
],
|
||||
"preLaunchTask": "compile-statusbar"
|
||||
},
|
||||
{
|
||||
"name": "Launch Language Provider Sample",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceRoot}/languageprovider-sample"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/languageprovider-sample/client/out/**/*.js"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Attach Language Provider Sample Server",
|
||||
"type": "node",
|
||||
"request": "attach",
|
||||
"port": 6004,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/languageprovider-sample/server/out/**/*.js"
|
||||
]
|
||||
}
|
||||
],
|
||||
"compounds": [
|
||||
{
|
||||
"name": "Launch Language Provider Sample & Attach to Server",
|
||||
"configurations": [
|
||||
"Launch Language Provider Sample",
|
||||
"Attach Language Provider Sample Server"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
12
.vscode/settings.json
vendored
12
.vscode/settings.json
vendored
@ -1,11 +1,3 @@
|
||||
{
|
||||
"files.exclude": {
|
||||
"**/out": false // set this to true to hide the "out" folder with the compiled JS files
|
||||
},
|
||||
"search.exclude": {
|
||||
"**/out": true
|
||||
},
|
||||
"editor.formatOnSave": true,
|
||||
"editor.useTabStops": true,
|
||||
"prettier.useTabs": true
|
||||
}
|
||||
"editor.insertSpaces": false
|
||||
}
|
||||
97
.vscode/tasks.json
vendored
97
.vscode/tasks.json
vendored
@ -1,97 +0,0 @@
|
||||
// Available variables which can be used inside of strings.
|
||||
// ${workspaceRoot}: the root folder of the team
|
||||
// ${file}: the current opened file
|
||||
// ${fileBasename}: the current opened file's basename
|
||||
// ${fileDirname}: the current opened file's dirname
|
||||
// ${fileExtname}: the current opened file's extension
|
||||
// ${cwd}: the current working directory of the spawned process
|
||||
// A task runner that calls a custom npm script that compiles the extension.
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "shell",
|
||||
// in package.json we have a compile task for each example
|
||||
"command": "npm run compile-completions",
|
||||
"label": "compile-completions",
|
||||
// show the output window only if unrecognized errors occur.
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
// The tsc compiler is started in watching mode
|
||||
"isBackground": true,
|
||||
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
|
||||
"problemMatcher": "$tsc-watch"
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
// in package.json we have a compile task for each example
|
||||
"command": "npm run compile-decorator",
|
||||
"label": "compile-decorator",
|
||||
// show the output window only if unrecognized errors occur.
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
// The tsc compiler is started in watching mode
|
||||
"isBackground": true,
|
||||
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
|
||||
"problemMatcher": "$tsc-watch"
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
// in package.json we have a compile task for each example
|
||||
"command": "npm run compile-previewhtml",
|
||||
"label": "compile-previewhtml",
|
||||
// show the output window only if unrecognized errors occur.
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
// The tsc compiler is started in watching mode
|
||||
"isBackground": true,
|
||||
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
|
||||
"problemMatcher": "$tsc-watch"
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
// in package.json we have a compile task for each example
|
||||
"command": "npm run compile-statusbar",
|
||||
"label": "compile-statusbar",
|
||||
// show the output window only if unrecognized errors occur.
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
// The tsc compiler is started in watching mode
|
||||
"isBackground": true,
|
||||
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
|
||||
"problemMatcher": "$tsc-watch"
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
// in package.json we have a compile task for each example
|
||||
"command": "npm run compile-contentprovider",
|
||||
"label": "compile-contentprovider",
|
||||
// show the output window only if unrecognized errors occur.
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
// The tsc compiler is started in watching mode
|
||||
"isBackground": true,
|
||||
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
|
||||
"problemMatcher": "$tsc-watch"
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
// in package.json we have a compile task for each example
|
||||
"command": "npm run compile-languageprovider",
|
||||
"label": "compile-languageprovider",
|
||||
// show the output window only if unrecognized errors occur.
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
// The tsc compiler is started in watching mode
|
||||
"isBackground": true,
|
||||
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
|
||||
"problemMatcher": "$tsc-watch"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user