diff --git a/.vscode/settings.json b/.vscode/settings.json index 154447f..cc7fb48 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,9 @@ "typescript.tsdk": "node_modules\\typescript\\lib", "javascript.preferences.importModuleSpecifierEnding": "js", "typescript.preferences.importModuleSpecifierEnding": "js", - "js/ts.implicitProjectConfig.module": "NodeNext" + "js/ts.implicitProjectConfig.module": "NodeNext", + "terminal.integrated.automationProfile.windows": { + "path": "pwsh.exe", + "icon": "terminal-powershell" + } } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index a0b81bc..8696480 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,6 +7,19 @@ "problemMatcher": "$eslint-stylish", "label": "npm: lint", "detail": "eslint src/index.ts" + }, + { + "type": "typescript", + "tsconfig": "tsconfig.build.json", + "option": "watch", + "problemMatcher": [ + "$tsc-watch" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "label": "tsc: watch - tsconfig.build.json" } ] }