We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2389143 commit 9ccc3dcCopy full SHA for 9ccc3dc
.vscode/launch.json
@@ -4,6 +4,24 @@
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
"version": "0.2.0",
6
"configurations": [
7
+ {
8
+ "type": "node",
9
+ "request": "launch",
10
+ "name": "RTDB Unit Tests (Node)",
11
+ "program": "${workspaceRoot}/packages/firestore/node_modules/.bin/_mocha",
12
+ "cwd": "${workspaceRoot}/packages/database",
13
+ "args": [
14
+ "test/{,!(browser)/**/}*.test.ts",
15
+ "--file", "index.node.ts",
16
+ "--opts", "../../config/mocha.node.opts"
17
+ ],
18
+ "env": {
19
+ "TS_NODE_CACHE": "NO",
20
+ "TS_NODE_COMPILER_OPTIONS" : "{\"module\":\"commonjs\"}"
21
+ },
22
+ "sourceMaps": true,
23
+ "protocol": "inspector"
24
25
{
26
"type": "node",
27
"request": "launch",
0 commit comments