Explorar el Código

chore: enable "declarationMap" and "sourceMap" in "tsconfig.json"

Paul Razvan Berg hace 3 años
padre
commit
59613a505e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      tsconfig.json

+ 2 - 2
tsconfig.json

@@ -1,7 +1,7 @@
 {
   "compilerOptions": {
     "declaration": true,
-    "declarationMap": false,
+    "declarationMap": true,
     "emitDecoratorMetadata": true,
     "esModuleInterop": true,
     "experimentalDecorators": true,
@@ -12,7 +12,7 @@
     "noImplicitAny": true,
     "removeComments": true,
     "resolveJsonModule": true,
-    "sourceMap": false,
+    "sourceMap": true,
     "strict": true,
     "target": "es6"
   },