Skip to content

Commit

Permalink
fix(tools): fixed paths for eslint and some devcontainer tools
Browse files Browse the repository at this point in the history
  • Loading branch information
ADRFranklin committed May 14, 2024
1 parent 0d3fc21 commit 3e9dec5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"source.fixAll.eslint": "always"
},
"eslint.workingDirectories": [
"/workspace/pkg/api"
"/workspace/server"
],
"eslint.validate": [
"javascript",
Expand Down
9 changes: 2 additions & 7 deletions server/nodemon.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
{
"watch": [
"src",
".env"
],
"watch": ["src", ".env"],
"ext": "js,ts,json",
"ignore": [
"src/**/*.spec.ts"
],
"ignore": ["src/**/*.tests.ts"],
"exec": "ts-node --swc -r tsconfig-paths/register --transpile-only ./src/app.ts"
}

0 comments on commit 3e9dec5

Please sign in to comment.