Skip to content

Commit 1afac76

Browse files
fix: Added vscode settings as 1 time
1 parent 9b64acf commit 1afac76

3 files changed

Lines changed: 60 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch with Yarn",
11+
"runtimeExecutable": "yarn",
12+
"args": ["start"],
13+
"cwd": "${workspaceFolder}"
14+
},
15+
{
16+
"type": "node",
17+
"request": "launch",
18+
"name": "Debug with Yarn",
19+
"runtimeExecutable": "yarn",
20+
"args": ["start", "--inspect=9229"],
21+
"cwd": "${workspaceFolder}",
22+
"console": "integratedTerminal"
23+
}
24+
]
25+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"eslint.validate": [
3+
"javascript",
4+
"typescript"
5+
],
6+
"eslint.workingDirectories": [
7+
{
8+
"directory": "./src",
9+
"changeProcessCWD": true
10+
}
11+
],
12+
"typescript.tsdk": "node_modules/typescript/lib",
13+
"githubPullRequests.ignoredPullRequestBranches": [
14+
"main"
15+
]
16+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "install",
8+
"type": "shell",
9+
"command": "yarn install",
10+
"problemMatcher": []
11+
},
12+
{
13+
"label": "build",
14+
"type": "shell",
15+
"command": "yarn build",
16+
"problemMatcher": "$tsc"
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)