diff --git a/v-next/example-project/hardhat.config.ts b/v-next/example-project/hardhat.config.ts index 174d29c7c8..cea163307c 100644 --- a/v-next/example-project/hardhat.config.ts +++ b/v-next/example-project/hardhat.config.ts @@ -1,4 +1,4 @@ -import type { HardhatUserConfig } from "@ignored/hardhat-vnext/types/config"; +import type { HardhatUserConfig } from "@ignored/hardhat-vnext/config"; import { HardhatPluginError } from "@ignored/hardhat-vnext/plugins"; diff --git a/v-next/hardhat-viem/test/fixture-projects/default-ts-project/hardhat.config.ts b/v-next/hardhat-viem/test/fixture-projects/default-ts-project/hardhat.config.ts index 35030566b8..5c1d794a8c 100644 --- a/v-next/hardhat-viem/test/fixture-projects/default-ts-project/hardhat.config.ts +++ b/v-next/hardhat-viem/test/fixture-projects/default-ts-project/hardhat.config.ts @@ -1,4 +1,4 @@ -import type { HardhatUserConfig } from "@ignored/hardhat-vnext/types/config"; +import type { HardhatUserConfig } from "@ignored/hardhat-vnext/config"; import HardhatViem from "../../../src/index.js"; diff --git a/v-next/hardhat/templates/empty-typescript/hardhat.config.ts b/v-next/hardhat/templates/empty-typescript/hardhat.config.ts index 822e1a3ec1..83ba902b6e 100644 --- a/v-next/hardhat/templates/empty-typescript/hardhat.config.ts +++ b/v-next/hardhat/templates/empty-typescript/hardhat.config.ts @@ -1,4 +1,4 @@ -import type { HardhatUserConfig } from "@ignored/hardhat-vnext/types/config"; +import type { HardhatUserConfig } from "@ignored/hardhat-vnext/config"; const config: HardhatUserConfig = {}; diff --git a/v-next/hardhat/templates/typescript-with-examples/hardhat.config.ts b/v-next/hardhat/templates/typescript-with-examples/hardhat.config.ts index 8488537d63..5d5a0dc75b 100644 --- a/v-next/hardhat/templates/typescript-with-examples/hardhat.config.ts +++ b/v-next/hardhat/templates/typescript-with-examples/hardhat.config.ts @@ -1,4 +1,4 @@ -import type { HardhatUserConfig } from "@ignored/hardhat-vnext/types/config"; +import type { HardhatUserConfig } from "@ignored/hardhat-vnext/config"; import HardhatNodeTestRunner from "@ignored/hardhat-vnext-node-test-runner"; diff --git a/v-next/hardhat/templates/typescript-with-examples/package.json b/v-next/hardhat/templates/typescript-with-examples/package.json index 1f6e686f96..5b8ec0273f 100644 --- a/v-next/hardhat/templates/typescript-with-examples/package.json +++ b/v-next/hardhat/templates/typescript-with-examples/package.json @@ -2,7 +2,7 @@ "name": "template-typescript-with-examples", "private": true, "version": "0.0.1", - "description": "A TypeScrpit Hardhat project with examples", + "description": "A TypeScript Hardhat project with examples", "type": "module", "devDependencies": { "@ignored/hardhat-vnext": "workspace:^3.0.0-next.5",