Browse Source

chore: move files under "files" field in tsconfig.json

Paul Razvan Berg 4 years ago
parent
commit
eff7b270de
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tsconfig.json

+ 2 - 2
tsconfig.json

@@ -13,6 +13,7 @@
     "target": "es5"
   },
   "exclude": ["node_modules"],
+  "files": ["./hardhat.config.ts"],
   "include": [
     "artifacts/**/*",
     "artifacts/**/*.json",
@@ -20,7 +21,6 @@
     "tasks/**/*",
     "test/**/*",
     "typechain/**/*",
-    "types/**/*",
-    "hardhat.config.ts"
+    "types/**/*"
   ]
 }