зеркало из https://github.com/microsoft/tiny-calc.git
103 строки
3.5 KiB
JSON
103 строки
3.5 KiB
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": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Binary Tests",
|
|
"cwd": "${workspaceFolder}/packages/common/binary",
|
|
"program": "node_modules/mocha/bin/_mocha",
|
|
"args": [
|
|
"-r",
|
|
"ts-node/register",
|
|
"--no-timeouts",
|
|
"test/**/*.spec.ts"
|
|
],
|
|
"env": { "TS_NODE_PROJECT": "tsconfig.json" },
|
|
"console": "integratedTerminal",
|
|
"skipFiles": ["<node_internals>/**/*.js"]
|
|
}
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Nano Bench",
|
|
"cwd": "${workspaceFolder}/packages/core/nano",
|
|
"program": "node_modules/ts-node/dist/bin.js",
|
|
"args": [ "bench/index.ts" ],
|
|
"env": { "TS_NODE_PROJECT": "tsconfig.json" },
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Nano Tests",
|
|
"cwd": "${workspaceFolder}/packages/core/nano",
|
|
"program": "node_modules/mocha/bin/_mocha",
|
|
"args": [
|
|
"-r",
|
|
"ts-node/register",
|
|
"--no-timeouts",
|
|
"test/**/*.spec.ts"
|
|
],
|
|
"env": { "TS_NODE_PROJECT": "tsconfig.json" },
|
|
"console": "integratedTerminal",
|
|
"skipFiles": ["<node_internals>/**/*.js"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Micro Bench",
|
|
"cwd": "${workspaceFolder}/packages/core/micro",
|
|
"program": "node_modules/ts-node/dist/bin.js",
|
|
"args": [ "bench/index.ts" ],
|
|
"env": { "TS_NODE_PROJECT": "tsconfig.json" },
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Micro Tests",
|
|
"cwd": "${workspaceFolder}/packages/core/micro",
|
|
"program": "node_modules/mocha/bin/_mocha",
|
|
"args": [
|
|
"-r",
|
|
"ts-node/register",
|
|
"--no-timeouts",
|
|
"test/**/*.spec.ts"
|
|
],
|
|
"env": { "TS_NODE_PROJECT": "tsconfig.json" },
|
|
"console": "integratedTerminal",
|
|
"skipFiles": ["<node_internals>/**/*.js"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Example",
|
|
"cwd": "${workspaceFolder}/packages/test/example",
|
|
"program": "example/node_modules/ts-node/dist/bin.js",
|
|
"args": [ "src/index.ts" ],
|
|
"env": { "TS_NODE_PROJECT": "tsconfig.json" },
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Tree Tests",
|
|
"cwd": "${workspaceFolder}/experiments/tree",
|
|
"program": "node_modules/mocha/bin/_mocha",
|
|
"args": [
|
|
"-r",
|
|
"ts-node/register",
|
|
"--no-timeouts",
|
|
"test/**/*.spec.ts"
|
|
],
|
|
"env": { "TS_NODE_PROJECT": "tsconfig.json" },
|
|
"console": "integratedTerminal",
|
|
"skipFiles": ["<node_internals>/**/*.js"]
|
|
}
|
|
]
|
|
}
|