Skip to content

Commit e30df66

Browse files
committed
lint
1 parent 7498c12 commit e30df66

File tree

3 files changed

+36
-50
lines changed

3 files changed

+36
-50
lines changed

.vscode/launch.json

Lines changed: 17 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,19 @@
11
{
2-
"version": "0.2.0",
3-
"configurations": [
4-
{
5-
"type": "node",
6-
"request": "launch",
7-
"name": "Debug graph init",
8-
"skipFiles": [
9-
"<node_internals>/**"
10-
],
11-
"program": "${workspaceFolder}/packages/cli/bin/run",
12-
"args": [
13-
"init"
14-
],
15-
"preLaunchTask": "build",
16-
"outFiles": [
17-
"${workspaceFolder}/packages/cli/dist/**/*.js"
18-
],
19-
"sourceMaps": true,
20-
"resolveSourceMapLocations": [
21-
"${workspaceFolder}/**",
22-
"!**/node_modules/**"
23-
],
24-
"console": "integratedTerminal",
25-
"internalConsoleOptions": "neverOpen"
26-
}
27-
]
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Debug graph init",
8+
"skipFiles": ["<node_internals>/**"],
9+
"program": "${workspaceFolder}/packages/cli/bin/run",
10+
"args": ["init", "--skip-git"],
11+
"preLaunchTask": "build:dev",
12+
"outFiles": ["${workspaceFolder}/packages/cli/dist/**/*.js"],
13+
"sourceMaps": true,
14+
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
15+
"console": "integratedTerminal",
16+
"internalConsoleOptions": "neverOpen"
17+
}
18+
]
2819
}

.vscode/tasks.json

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
4-
{
5-
"label": "build",
6-
"type": "shell",
7-
"command": "pnpm",
8-
"args": [
9-
"--filter=@graphprotocol/graph-cli",
10-
"build:dev"
11-
],
12-
"group": {
13-
"kind": "build",
14-
"isDefault": true
15-
},
16-
"presentation": {
17-
"reveal": "silent",
18-
"panel": "shared"
19-
},
20-
"problemMatcher": "$tsc"
21-
}
22-
]
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build:dev",
6+
"type": "shell",
7+
"command": "pnpm",
8+
"args": ["--filter=@graphprotocol/graph-cli", "build:dev"],
9+
"group": {
10+
"kind": "build",
11+
"isDefault": true
12+
},
13+
"presentation": {
14+
"reveal": "silent",
15+
"panel": "shared"
16+
},
17+
"problemMatcher": "$tsc"
18+
}
19+
]
2320
}

packages/cli/tsconfig.debug.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@
44
"sourceMap": true,
55
"inlineSources": true
66
},
7-
"include": [
8-
"./src",
9-
],
7+
"include": ["./src"]
108
}

0 commit comments

Comments
 (0)