Selaa lähdekoodia

Merge pull request #44 from TheRealJon/OCPBUGS-10850

OCPBUGS-10850: Enable source maps for typescript
OpenShift Merge Robot 3 vuotta sitten
vanhempi
sitoutus
c7b49c6f8f
2 muutettua tiedostoa jossa 4 lisäystä ja 2 poistoa
  1. 2 1
      .gitignore
  2. 2 1
      tsconfig.json

+ 2 - 1
.gitignore

@@ -4,4 +4,5 @@ dist/
 integration-tests/videos
 integration-tests/screenshots
 integration-tests/.DS_Store
-.DS_Store
+yarn-error.log
+.DS_Store

+ 2 - 1
tsconfig.json

@@ -7,7 +7,8 @@
     "jsx": "react",
     "allowJs": true,
     "strict": false,
-    "noUnusedLocals": true
+    "noUnusedLocals": true,
+    "sourceMap": true
   },
   "include": ["src"]
 }