2015-05-04 46 views
4

args参数中的--harmony标志似乎不起作用。我不能使用胖阵列功能。 这里lounch.jsonargs参数中的--harmony标志似乎不起作用

"configurations": [ 
    { 
     // Name of configuration; appears in the launch configuration drop down menu. 
     "name": "Launch app.js", 
     // Type of configuration. Possible values: "node", "mono". 
     "type": "node", 
     // Workspace relative or absolute path to the program. 
     "program": "./app.js", 
     // Automatically stop program after launch. 
     "stopOnEntry": true, 
     // Command line arguments passed to the program. 
     "args": ["--harmony"], 
     // Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace. 
     "cwd": ".", 
     // Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH. 
     "runtimeExecutable": null, 
     // Environment variables passed to the program. 
     "env": { } 
    }, 
    { 
     "name": "Attach", 
     "type": "node", 
     // TCP/IP address. Default is "localhost". 
     "address": "localhost", 
     // Port to attach to. 
     "port": 5858 
    } 
] 

部分是有办法解决自己的问题?

回答