-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsettings.json
24 lines (24 loc) · 882 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.tsc.autoDetect": "off",
"[typescript]": {
"powerHeader.autoInsert.enable": true,
"powerHeader.commentMode": "raw",
"powerHeader.template": "/*\\n * Copyright (c) Jan Dolejsi $CURRENT_YEAR. All rights reserved.\\n * Licensed under the MIT License. See License.txt in the project root for license information.\\n */\\n'use strict';\\n\\nimport { } from 'vscode';"
},
"mocha.files.glob": "out/test/*Test.js",
"eslint.validate": [
"typescript"
],
"WhiteSource Advise.Diff.BaseBranch": "master",
"task.allowAutomaticTasks": "on",
"git.branchProtection": [
"master"
],
}