Created
          February 23, 2019 12:57 
        
      - 
      
- 
        Save alxpsr/8555122fc4c1248f7812a9221daef7e0 to your computer and use it in GitHub Desktop. 
    Debug Custom TSLint rule with vscode
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "name": "Debug TSLint Rule", | |
| "type": "node", | |
| "request": "launch", | |
| "program": "${workspaceRoot}/my-rules/myCustomRule.ts", | |
| "stopOnEntry": false, | |
| "cwd": "${workspaceRoot}", | |
| "runtimeExecutable": null, | |
| "runtimeArgs": [ | |
| "--nolazy" | |
| ], | |
| "env": { | |
| "NODE_ENV": "development" | |
| }, | |
| "console": "internalConsole", | |
| "outputCapture": "std", | |
| "sourceMaps": true, | |
| "outFiles": [ | |
| "${workspaceRoot}/out/**/*.js" | |
| ] | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment