`@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.
25 lines
428 B
JSON
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
|
|
}
|
|
}
|