File tree Expand file tree Collapse file tree
src/ContentProcessorWeb/.vscode Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments