Skip to content

Commit bdee527

Browse files
authored
refactor: tool registration (#8)
1 parent 96eead6 commit bdee527

File tree

14 files changed

+2544
-280
lines changed

14 files changed

+2544
-280
lines changed

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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 Program",
11+
"skipFiles": ["<node_internals>/**"],
12+
"program": "${workspaceFolder}/dist/index.js",
13+
"preLaunchTask": "tsc: build - tsconfig.json",
14+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
15+
}
16+
]
17+
}

eslint.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineConfig } from "eslint/config";
1+
import { defineConfig, globalIgnores } from "eslint/config";
22
import js from "@eslint/js";
33
import globals from "globals";
44
import tseslint from "typescript-eslint";
@@ -9,4 +9,5 @@ export default defineConfig([
99
{ files: ["src/**/*.ts"], languageOptions: { globals: globals.node } },
1010
tseslint.configs.recommended,
1111
eslintConfigPrettier,
12+
globalIgnores(["node_modules", "dist"]),
1213
]);

0 commit comments

Comments
 (0)