aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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}