parsergen-starter
Version:
A complete parser generator starter with PEG.js, optional Moo lexer, and VS Code integration
30 lines (28 loc) • 916 B
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": [
{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/index.ts",
"runtimeArgs": ["--loader", "ts-node/esm"],
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"env": {
"NODE_OPTIONS": "--loader ts-node/esm --experimental-specifier-resolution=node"
},
"skipFiles": ["<node_internals>/**"],
"console": "integratedTerminal"
}
]
}