2022-12-13 23:46:02 +00:00
|
|
|
{
|
|
|
|
"folders": [
|
|
|
|
{
|
|
|
|
"path": "."
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
|
|
|
|
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
|
|
|
|
"javascript.format.placeOpenBraceOnNewLineForFunctions": true,
|
|
|
|
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
|
|
|
|
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
|
|
|
|
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
|
|
|
|
"html.format.extraLiners": "",
|
|
|
|
"html.format.indentInnerHtml": true,
|
|
|
|
"html.format.maxPreserveNewLines": 1,
|
2022-12-14 08:07:40 +00:00
|
|
|
"html.format.wrapAttributes": "preserve-aligned",
|
|
|
|
"npm.packageManager": "npm"
|
2022-12-13 23:46:02 +00:00
|
|
|
},
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"tasks": {
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "Build",
|
2022-12-14 08:19:24 +00:00
|
|
|
"type": "shell",
|
|
|
|
"options": {
|
2022-12-14 23:57:54 +00:00
|
|
|
"cwd": "${workspaceFolder}"
|
2022-12-14 08:19:24 +00:00
|
|
|
},
|
|
|
|
"command": "npm",
|
|
|
|
"args": [
|
|
|
|
"run",
|
|
|
|
"watch"
|
|
|
|
],
|
2022-12-13 23:46:02 +00:00
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": [
|
|
|
|
{
|
|
|
|
"owner": "gulp",
|
|
|
|
"pattern": {
|
|
|
|
"regexp": ""
|
|
|
|
},
|
|
|
|
"background": {
|
|
|
|
"activeOnStart": true,
|
|
|
|
"beginsPattern": {
|
|
|
|
"regexp": "Starting '(?!Watch).*?'"
|
|
|
|
},
|
|
|
|
"endsPattern": {
|
|
|
|
"regexp": "Finished '.*?'"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"isBackground": true,
|
|
|
|
"presentation": {
|
|
|
|
"reveal": "never"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Rebuild",
|
2022-12-14 08:19:24 +00:00
|
|
|
"type": "shell",
|
|
|
|
"options": {
|
2022-12-14 23:57:54 +00:00
|
|
|
"cwd": "${workspaceFolder}"
|
2022-12-14 08:19:24 +00:00
|
|
|
},
|
|
|
|
"command": "npm",
|
|
|
|
"args": [
|
|
|
|
"run",
|
|
|
|
"rebuild"
|
|
|
|
],
|
2022-12-13 23:46:02 +00:00
|
|
|
"problemMatcher": [],
|
|
|
|
"presentation": {
|
|
|
|
"reveal": "never"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Lint",
|
2022-12-14 08:19:24 +00:00
|
|
|
"type": "shell",
|
|
|
|
"options": {
|
2022-12-14 23:57:54 +00:00
|
|
|
"cwd": "${workspaceFolder}"
|
2022-12-14 08:19:24 +00:00
|
|
|
},
|
|
|
|
"command": "npm",
|
|
|
|
"args": [
|
|
|
|
"run",
|
|
|
|
"lint-ide"
|
|
|
|
],
|
2022-12-13 23:46:02 +00:00
|
|
|
"problemMatcher": "$eslint-stylish",
|
|
|
|
"presentation": {
|
|
|
|
"reveal": "never"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"launch": {
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "chrome",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Launch Website in Chrome",
|
|
|
|
"url": "http://localhost:3000",
|
2022-12-14 23:57:54 +00:00
|
|
|
"webRoot": "${workspaceFolder}/lib/static",
|
2022-12-13 23:46:02 +00:00
|
|
|
"preLaunchTask": "Build",
|
|
|
|
"pathMapping": {
|
2022-12-14 23:57:54 +00:00
|
|
|
"/": "${workspaceFolder}/src"
|
2022-12-13 23:46:02 +00:00
|
|
|
}
|
2022-12-14 08:29:49 +00:00
|
|
|
}
|
|
|
|
]
|
2022-12-13 23:46:02 +00:00
|
|
|
},
|
|
|
|
"extensions": {
|
|
|
|
"recommendations": [
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
"hbenl.test-adapter-converter",
|
|
|
|
"hbenl.vscode-mocha-test-adapter",
|
|
|
|
"hbenl.vscode-test-explorer"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|