Procházet zdrojové kódy

chore: update rules in tsconfig.json

Paul Razvan Berg před 4 roky
rodič
revize
6d5f2bac10
1 změnil soubory, kde provedl 6 přidání a 1 odebrání
  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"
   },