This repository has been archived on 2024-09-09 . You can view files and clone it, but cannot push or open issues or pull requests.
2d298a71dd
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|||
"name": "testing-editor-contributions",
|
|||
"displayName": "%displayName%",
|
|||
"description": "%description%",
|
|||
"version": "1.0.0",
|
|||
"enableProposedApi": true,
|
|||
"publisher": "vscode",
|
|||
"license": "MIT",
|
|||
"engines": {
|
|||
"vscode": "^1.39.0"
|
|||
},
|
|||
"categories": [
|
|||
"Other"
|
|||
],
|
|||
"main": "./out/extension.js",
|
|||
"browser": "./dist/extension.js",
|
|||
"activationEvents": [
|
|||
"onStartupFinished"
|
|||
],
|
|||
"dependencies": {
|
|||
"vscode-nls": "^5.0.0"
|
|||
},
|
|||
"contributes": {
|
|||
"configuration": {
|
|||
"title": "Testing",
|
|||
"properties": {
|
|||
"testing.enableCodeLens": {
|
|||
"description": "%config.enableCodeLens%",
|
|||
"type": "boolean",
|
|||
"default": true
|
|||
},
|
|||
"testing.enableProblemDiagnostics": {
|
|||
"description": "%config.enableProblemDiagnostics%",
|
|||
"type": "boolean",
|
|||
"default": false
|
|||
}
|
|||
}
|
|||
}
|
|||
},
|
|||
"scripts": {
|
|||
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:testing-editor-contributions ./tsconfig.json"
|
|||
},
|
|||
"prettier": {
|
|||
"printWidth": 100,
|
|||
"singleQuote": true,
|
|||
"trailingComma": "all"
|
|||
}
|
|||
}
|