1
0
mirror of synced 2025-11-08 12:57:47 +00:00

refactor(CLI): modularize more, test more

This commit is contained in:
Jason Dreyzehner
2018-03-11 00:00:24 -05:00
parent e406917ff8
commit a0541f9f9b
14 changed files with 877 additions and 445 deletions

2
.vscode/launch.json vendored
View File

@@ -5,6 +5,8 @@
"type": "node",
"request": "launch",
"name": "Debug CLI",
// we test in `build` to make cleanup fast and easy
"cwd": "${workspaceFolder}/build",
"program": "${workspaceFolder}/src/cli/cli.ts",
"outFiles": ["${workspaceFolder}/build/main/**/*.js"],
"skipFiles": [

View File

@@ -1,5 +1,5 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.implementationsCodeLens.enabled": true,
"typescript.referencesCodeLens.enabled": true
"typescript.tsdk": "node_modules/typescript/lib"
// "typescript.implementationsCodeLens.enabled": true
// "typescript.referencesCodeLens.enabled": true
}