فهرست منبع

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