Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Ordered imports grouping #4134

Merged
merged 9 commits into from
Jan 29, 2019
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"stopOnEntry": false,
"args": ["run", "test"],
"cwd": "${workspaceRoot}",
"preLaunchTask": "tsc",
"preLaunchTask": "compile_tests",
"runtimeExecutable": null,
"runtimeArgs": ["--nolazy"],
"env": {
Expand Down
19 changes: 9 additions & 10 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "tsc",
"isShellCommand": true,
"args": ["-w", "-p", "test"],
"showOutput": "silent",
"isWatching": true,
"problemMatcher": "$tsc-watch"
}
"tasks": [
{
"identifier": "compile_tests",
"type": "npm",
"script": "compile:test",
"problemMatcher": ["$tsc"]
}
]
}