Преглед изворни кода

add commonjs module config to tsconfig

afrokick пре 6 година
родитељ
комит
d42eeac984
1 измењених фајлова са 5 додато и 1 уклоњено
  1. 5 1
      tsconfig.json

+ 5 - 1
tsconfig.json

@@ -1,6 +1,10 @@
 {
     "compilerOptions": {
         "target": "es6",
-        "downlevelIteration": true
+        "module": "commonjs",
+        "downlevelIteration": true,
+        "noUnusedLocals": true,
+        "noUnusedParameters": true,
+        "skipLibCheck": true,
     }
 }