🐛(app-desk) add next-env.d.ts
next-env.d.ts lot of types for the next.js. next.js boilerplate don't version the next-env.d.ts file, so it was being ignored by git. This was causing the CI to fail with the ts linter.
This commit is contained in:
1
src/frontend/apps/desk/.gitignore
vendored
1
src/frontend/apps/desk/.gitignore
vendored
@@ -33,4 +33,3 @@ yarn-error.log*
|
|||||||
|
|
||||||
# typescript
|
# typescript
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
|
||||||
|
|||||||
1
src/frontend/apps/desk/.prettierignore
Normal file
1
src/frontend/apps/desk/.prettierignore
Normal file
@@ -0,0 +1 @@
|
|||||||
|
next-env.d.ts
|
||||||
5
src/frontend/apps/desk/next-env.d.ts
vendored
Normal file
5
src/frontend/apps/desk/next-env.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
/// <reference types="next" />
|
||||||
|
/// <reference types="next/image-types/global" />
|
||||||
|
|
||||||
|
// NOTE: This file should not be edited
|
||||||
|
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
||||||
Reference in New Issue
Block a user