therepo/.vscode/settings.template.json
M. George Hansen 5f519f54f2
feat(@websnacksjs/conventional): initial implementation
`@websnacksjs/conventional` is a cli program which can be used with
`husky` & git hooks to enforce that commit messages adhere to the
conventional commits standard.
2025-08-19 18:31:34 +12:00

25 lines
428 B
JSON

{
"nodejs-testing.extensions": [
{
"extensions": ["mjs", "cjs", "js"],
"parameters": []
},
{
"extensions": ["mts", "cts", "ts"],
"parameters": [
"--experimental-strip-types",
"--disable-warning=ExperimentalWarning"
]
}
],
"nodejs-testing.pretest": [
"npm",
"run",
"--workspaces",
"--if-present",
"pretest"
],
"nodejs-testing.debugOptions": {
"autoAttachChildProcesses": true
}
}