mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 13:28:50 +08:00
044e1c2863
* wip * Adding chokidar and types * specifiying build tasks * new structure, new types, executor and watchers * Adding log * Fully implemented watchers * adapt vscode launc * Add .babelrc.js to toplevel tsconfig project * Typo * Get schema path from .graphqlconfig * Use watcher binary * Add joi validation to watcher * Remove fb-watchman for now * Use correct ignore path * Fix dist folder * Allow setting watcher * Per default only spawn one process at a time * Support runOnInit * Rename RestartingExecutor to LongRunningExecutor * Use debounce instead of throttle * Remove console log * Debounce command execution * Simplify debounce * Watcher name change * Typos * Rename "watcher" root level config to "backend"
24 lines
762 B
JSON
24 lines
762 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": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Program",
|
|
"cwd": "${workspaceFolder}",
|
|
"program": "${workspaceFolder}/node_modules/.bin/ts-node",
|
|
"args": [
|
|
"--project",
|
|
"${workspaceFolder}/src/tsconfig.json",
|
|
"-r",
|
|
"tsconfig-paths/register",
|
|
"${workspaceFolder}/src/index.ts"
|
|
],
|
|
"outputCapture": "std"
|
|
}
|
|
]
|
|
}
|