]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Support sourceMaps
authorChocobozzz <me@florianbigard.com>
Tue, 14 Dec 2021 12:20:38 +0000 (13:20 +0100)
committerChocobozzz <chocobozzz@cpy.re>
Thu, 16 Dec 2021 09:08:43 +0000 (10:08 +0100)
shared/tsconfig.json
tsconfig.base.json

index 88107e27f5e94d36397d16df98a65dd55099683a..95892077b84a7dd9273c104d41c7bcdc9806abb6 100644 (file)
@@ -1,7 +1,6 @@
 {
   "extends": "../tsconfig.base.json",
   "compilerOptions": {
-    "outDir": "../dist/shared",
-
+    "outDir": "../dist/shared"
   }
 }
index f579c703a7495a552270bbd12893aebc6e0ed5a1..a323b0d05e5293f2682f3809c8b39da8f2c66c23 100644 (file)
@@ -3,7 +3,7 @@
     "module": "commonjs",
     "target": "es2015",
     "noImplicitAny": false,
-    "sourceMap": false,
+    "sourceMap": true,
     "experimentalDecorators": true,
     "emitDecoratorMetadata": true,
     "importHelpers": true,
@@ -32,6 +32,7 @@
     "resolveJsonModule": true,
     "strict": false,
     "skipLibCheck": true,
-    "composite": true
+    "composite": true,
+    "declarationMap": true
   }
 }