Преглед на файлове

chore: update rules in tsconfig.json

Paul Razvan Berg преди 4 години
родител
ревизия
6d5f2bac10
променени са 1 файла, в които са добавени 6 реда и са изтрити 1 реда
  1. 6 1
      tsconfig.json

+ 6 - 1
tsconfig.json

@@ -1,13 +1,18 @@
 {
   "compilerOptions": {
+    "declaration": true,
+    "declarationMap": false,
+    "emitDecoratorMetadata": true,
     "esModuleInterop": true,
+    "experimentalDecorators": true,
     "forceConsistentCasingInFileNames": true,
     "lib": ["es6"],
     "module": "commonjs",
     "moduleResolution": "node",
     "noImplicitAny": true,
+    "removeComments": true,
     "resolveJsonModule": true,
-    "sourceMap": true,
+    "sourceMap": false,
     "strict": true,
     "target": "es6"
   },