File tree 2 files changed +3
-3
lines changed
internal/builtin-plugins/hardhat-foo
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { findClosestHardhatConfig } from "./internal/helpers/config-loading.js" ;
2
2
3
- // Note: We export the builtin plugins' types here, so that any type extension
3
+ // Note: We import the builtin plugins' types here, so that any type extension
4
4
// they may have gets loaded.
5
- export type * from "./internal/builtin-plugins/index.js" ;
5
+ import "./internal/builtin-plugins/index.js" ;
6
6
7
7
export type * from "@nomicfoundation/hardhat-core/config" ;
8
8
export * from "@nomicfoundation/hardhat-core/config" ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import type { HardhatPlugin } from "@nomicfoundation/hardhat-core/types/plugins"
2
2
3
3
import { globalFlag , task } from "@nomicfoundation/hardhat-core/config" ;
4
4
5
- export type * from "./type-extensions.js" ;
5
+ import "./type-extensions.js" ;
6
6
7
7
export default {
8
8
id : "hardhat-foo" ,
You can’t perform that action at this time.
0 commit comments