瀏覽代碼

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

Paul Razvan Berg 3 年之前
父節點
當前提交
59613a505e
共有 1 個文件被更改,包括 2 次插入2 次删除
  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"
   },