Skip to content

Commit 7bcc729

Browse files
committed
fix(next-env.d.ts): add types file for linting
1 parent d6ee0f9 commit 7bcc729

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ localhost.web-client.getpocket.com-key.pem
122122
localhost.web-client.getpocket.com.pem
123123

124124
# Typescript
125-
next-env.d.ts
125+
# next-env.d.ts
126126
schema.graphql
127127

128128
# turbo

clients/web/next-env.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

next-env.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

ui/components/next-env.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

0 commit comments

Comments
 (0)