Quellcode durchsuchen

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

Paul Razvan Berg vor 3 Jahren
Ursprung
Commit
59613a505e
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      tsconfig.json

+ 2 - 2
tsconfig.json

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