ncannasse 7 jaren geleden
bovenliggende
commit
e7b608c5ce
3 gewijzigde bestanden met toevoegingen van 14 en 19 verwijderingen
  1. 6 6
      .vscode/launch.json
  2. 0 5
      .vscode/settings.json
  3. 8 8
      .vscode/tasks.json

+ 6 - 6
.vscode/launch.json

@@ -1,15 +1,15 @@
 {
-    // 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
+    // Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
+    // Pointez pour afficher la description des attributs existants.
+    // Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
     "version": "0.2.0",
     "configurations": [
         {
-            "type": "chrome",
+            "type": "nwjs",
             "request": "attach",
-            "name": "Attach to Chrome",
+            "name": "Attach to NWjs",
             "port": 9222,
-            "webRoot": "${workspaceFolder}/bin"
+            "webRoot": "${workspaceFolder}"
         }
     ]
 }

+ 0 - 5
.vscode/settings.json

@@ -1,5 +0,0 @@
-{
-    "haxe.displayConfigurations": [
-        ["hide.hxml"]
-    ]
-}

+ 8 - 8
.vscode/tasks.json

@@ -2,20 +2,20 @@
     "version": "2.0.0",
     "tasks": [
         {
-            "label": "Compile & Run",
-            "command": "haxe",
-            "args": [
-                "hide.hxml",
-                "-cmd",
-                "bin\\hide.cmd"
+            "type": "hxml",
+            "file": "hide.hxml",
+            "problemMatcher": [
+                "$haxe-absolute",
+                "$haxe",
+                "$haxe-error",
+                "$haxe-trace"
             ],
-            "problemMatcher": "$haxe",
             "group": {
                 "kind": "build",
                 "isDefault": true
             },
             "presentation": {
-                "reveal": "never"
+                "reveal": "none"
             }
         }
     ],