aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-12-14 13:20:38 +0100
committerChocobozzz <chocobozzz@cpy.re>2021-12-16 10:08:43 +0100
commit75278e289067977291baa7e2ac217e85fc7d6088 (patch)
treea9b7ed2fa640f019b8e95e65cca7c191932dc6ef
parentb8fa3e8c734a46918118afe7976f248cc883f675 (diff)
downloadPeerTube-75278e289067977291baa7e2ac217e85fc7d6088.tar.gz
PeerTube-75278e289067977291baa7e2ac217e85fc7d6088.tar.zst
PeerTube-75278e289067977291baa7e2ac217e85fc7d6088.zip
Support sourceMaps
-rw-r--r--shared/tsconfig.json3
-rw-r--r--tsconfig.base.json5
2 files changed, 4 insertions, 4 deletions
diff --git a/shared/tsconfig.json b/shared/tsconfig.json
index 88107e27f..95892077b 100644
--- a/shared/tsconfig.json
+++ b/shared/tsconfig.json
@@ -1,7 +1,6 @@
1{ 1{
2 "extends": "../tsconfig.base.json", 2 "extends": "../tsconfig.base.json",
3 "compilerOptions": { 3 "compilerOptions": {
4 "outDir": "../dist/shared", 4 "outDir": "../dist/shared"
5
6 } 5 }
7} 6}
diff --git a/tsconfig.base.json b/tsconfig.base.json
index f579c703a..a323b0d05 100644
--- a/tsconfig.base.json
+++ b/tsconfig.base.json
@@ -3,7 +3,7 @@
3 "module": "commonjs", 3 "module": "commonjs",
4 "target": "es2015", 4 "target": "es2015",
5 "noImplicitAny": false, 5 "noImplicitAny": false,
6 "sourceMap": false, 6 "sourceMap": true,
7 "experimentalDecorators": true, 7 "experimentalDecorators": true,
8 "emitDecoratorMetadata": true, 8 "emitDecoratorMetadata": true,
9 "importHelpers": true, 9 "importHelpers": true,
@@ -32,6 +32,7 @@
32 "resolveJsonModule": true, 32 "resolveJsonModule": true,
33 "strict": false, 33 "strict": false,
34 "skipLibCheck": true, 34 "skipLibCheck": true,
35 "composite": true 35 "composite": true,
36 "declarationMap": true
36 } 37 }
37} 38}