Skip to content

Instantly share code, notes, and snippets.

@nrkn
Created April 20, 2016 04:26
Show Gist options
  • Save nrkn/da6bde225b114d9b8d9f7cf66772c0c9 to your computer and use it in GitHub Desktop.
Save nrkn/da6bde225b114d9b8d9f7cf66772c0c9 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/index.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}
'use strict'
this should have error highlighting
{
"compilerOptions": {
"target": "es6",
"module": "commonjs"
}
}
{
"name": "min-fail",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment