Initial commit
This commit is contained in:
commit
3165625fb7
29 changed files with 7080 additions and 0 deletions
8
.vscode/extensions.json
vendored
Normal file
8
.vscode/extensions.json
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"mkhl.direnv",
|
||||
"biomejs.biome",
|
||||
"editorconfig.editorconfig",
|
||||
"connor4312.nodejs-testing"
|
||||
]
|
||||
}
|
||||
22
.vscode/settings.template.json
vendored
Normal file
22
.vscode/settings.template.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
17
.vscode/tasks.json
vendored
Normal file
17
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build",
|
||||
"type": "shell",
|
||||
"command": "npm run build --workspaces --if-present",
|
||||
"problemMatcher": ["$tsc"],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue