Browse Source

Sort tsconfigbase options

Jason Grout 6 years ago
parent
commit
0a2611921f
1 changed files with 6 additions and 6 deletions
  1. 6 6
      tsconfigbase.json

+ 6 - 6
tsconfigbase.json

@@ -3,17 +3,17 @@
     "allowSyntheticDefaultImports": true,
     "composite": true,
     "declaration": true,
-    "noImplicitAny": true,
-    "noEmitOnError": true,
-    "noUnusedLocals": true,
     "esModuleInterop": true,
-    "preserveWatchOutput": true,
+    "jsx": "react",
+    "lib": ["dom", "es2015"],
     "module": "commonjs",
     "moduleResolution": "node",
+    "noEmitOnError": true,
+    "noImplicitAny": true,
+    "noUnusedLocals": true,
+    "preserveWatchOutput": true,
     "resolveJsonModule": true,
     "target": "es2015",
-    "lib": ["dom", "es2015"],
-    "jsx": "react",
     "types": []
   }
 }