瀏覽代碼

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