1fceda4724
* chore(refactor): tests use vitest and msw * fix(directory): Ensure filenames conform to eslint requirements * chore(yarn): Specify node engine version * fix(yarn): use the proper nodelinker * fix(GitHub workflow): yarn install with caching * docs(README): update to match changes --------- Co-authored-by: Gergő Jedlicska <gergo@jedlicska.com>
19 lines
534 B
JSON
19 lines
534 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Test with YARN",
|
|
"request": "launch",
|
|
"console": "integratedTerminal",
|
|
"runtimeArgs": ["test"],
|
|
"runtimeExecutable": "yarn",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"type": "node"
|
|
// "envFile": "${workspaceFolder}/.env"
|
|
}
|
|
]
|
|
}
|