Skip to content

Commit

Permalink
Uhm... lots of fixes and cleanups
Browse files Browse the repository at this point in the history
More type-safety added

Fixed SB client references

General fixes/updates

other stuff... + cleanups
  • Loading branch information
mrinc committed Jan 6, 2024
1 parent a03dba6 commit 9767049
Show file tree
Hide file tree
Showing 72 changed files with 4,580 additions and 1,853 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ node_modules
/nodejs/.nyc_output
/nodejs/lib
/nodejs/coverage
/nodejs/development/tsconfig.json
/dotnet/[Dd]ebug/
/dotnet/[Dd]ebugPublic/
/dotnet/[Rr]elease/
Expand Down
1 change: 0 additions & 1 deletion nodejs/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ node_modules
lib
_exports
src/plugins/-*/*.*
src/tests/**/*.*
templates
docker
build
11 changes: 3 additions & 8 deletions nodejs/development/tsconfig-release.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,14 @@
"moduleResolution": "node"
},
"linterOptions": {
"exclude": [
"src/plugins/-*/**/*.*",
"src/tests/**/*.*"
]
"exclude": ["src/plugins/-*/**/*.*", "src/tests/**/*.*"]
},
"compileOnSave": true,
"include": [
"src"
],
"include": ["src"],
"exclude": [
"node_modules/**",
"src/plugins/*-test*/**/*.*",
"src/plugins/-*/**/*.*",
"src/tests/**/*.*"
]
}
}
2 changes: 1 addition & 1 deletion nodejs/nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"delay": 2000,
"signal": "SIGHUP",
"exec": "ts-node src/dev.js",
"exec": "ts-node src/cli.ts",
"watch": [
"src/**/*.ts",
"sec-config.yaml"
Expand Down
Loading

0 comments on commit 9767049

Please sign in to comment.