chore: Disable crypt
This commit is contained in:
parent
211fc0923b
commit
16c0d2713e
355 changed files with 17944 additions and 0 deletions
56
.vscode/launch.json
vendored
Normal file
56
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
// Use IntelliSense to learn about possible Node.js debug attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Gulp build-icons-variants",
|
||||
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
|
||||
"args": [
|
||||
"build:icons.variants"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Gulp build-icons",
|
||||
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
|
||||
"args": [
|
||||
"build:icons.accents"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Launch Extension",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceRoot}"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/out/src/**/*.js"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Launch Tests",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceRoot}",
|
||||
"--extensionTestsPath=${workspaceRoot}/out/test"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceRoot}/out/test/**/*.js"
|
||||
],
|
||||
"preLaunchTask": "npm"
|
||||
}
|
||||
]
|
||||
}
|
29
.vscode/settings.json
vendored
Normal file
29
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"editor.tabSize": 2,
|
||||
"editor.insertSpaces": true,
|
||||
"files.exclude": {
|
||||
"**/.git": true,
|
||||
".git-crypt": true,
|
||||
"**/.svn": true,
|
||||
"**/.hg": true,
|
||||
"**/CVS": true,
|
||||
"**/.DS_Store": true,
|
||||
"**/*.js": {
|
||||
"when": "$(basename).ts"
|
||||
},
|
||||
"**/*.js.map": true
|
||||
},
|
||||
"files.associations": {
|
||||
"*.template": "json"
|
||||
},
|
||||
"html.format.preserveNewLines": true,
|
||||
"files.trimTrailingWhitespace": true,
|
||||
"[markdown]": {
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"editor.tabSize": 4,
|
||||
"editor.wordWrap": "on",
|
||||
"editor.quickSuggestions": false
|
||||
},
|
||||
"gulp.autoDetect": "off",
|
||||
"npm.autoDetect": "off"
|
||||
}
|
89
.vscode/tasks.json
vendored
Normal file
89
.vscode/tasks.json
vendored
Normal file
|
@ -0,0 +1,89 @@
|
|||
// 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 list (build, build-theme, semver etc)
|
||||
"tasks": [
|
||||
{
|
||||
"args": [
|
||||
"run",
|
||||
"build"
|
||||
],
|
||||
"command": "npm",
|
||||
"dependsOn": "tsc",
|
||||
"taskName": "build",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"linux": {
|
||||
"args": [
|
||||
".",
|
||||
"-name",
|
||||
"\"*.js\"",
|
||||
"-not",
|
||||
"-path",
|
||||
"\"./node_modules/*\"",
|
||||
"-not",
|
||||
"-path",
|
||||
"\"./src/*\"",
|
||||
"-not",
|
||||
"-path",
|
||||
"\"./test/*\"",
|
||||
"-type",
|
||||
"f",
|
||||
"-delete"
|
||||
],
|
||||
"command": "find"
|
||||
},
|
||||
"osx": {
|
||||
"args": [
|
||||
".",
|
||||
"-name",
|
||||
"\"*.js\"",
|
||||
"-not",
|
||||
"-path",
|
||||
"\"./node_modules/*\"",
|
||||
"-not",
|
||||
"-path",
|
||||
"\"./src/*\"",
|
||||
"-not",
|
||||
"-path",
|
||||
"\"./test/*\"",
|
||||
"-type",
|
||||
"f",
|
||||
"-delete"
|
||||
],
|
||||
"command": "find"
|
||||
},
|
||||
"command": "",
|
||||
"taskName": "clean project"
|
||||
},
|
||||
{
|
||||
"args": [
|
||||
"run",
|
||||
"changelog"
|
||||
],
|
||||
"command": "npm",
|
||||
"taskName": "changelog"
|
||||
},
|
||||
{
|
||||
"args": [
|
||||
"-p",
|
||||
"."
|
||||
],
|
||||
"command": "tsc",
|
||||
"dependsOn": "clean project",
|
||||
"taskName": "tsc"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue