angular-t9n
Version:
A translation tool for Angular i18n
45 lines (44 loc) • 1.25 kB
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": [
{
"type": "node",
"request": "launch",
"name": "t9n",
"program": "${workspaceFolder}/node_modules/@angular/cli/bin/ng",
"args": ["run", "angular-t9n:t9n"]
},
{
"type": "node",
"request": "launch",
"name": "t9n xlf",
"program": "${workspaceFolder}/node_modules/@angular/cli/bin/ng",
"args": ["run", "angular-t9n:t9n", "-c", "xlf"]
},
{
"type": "node",
"request": "launch",
"name": "t9n xlf cli",
"runtimeArgs": ["${workspaceRoot}/bin/cli.js", "t9n-xlf.json"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
},
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/jest/bin/jest.js",
"--runInBand"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
}
]
}