Переглянути джерело

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"
   },