modified next-env ve tsconfig files

This commit is contained in:
2025-08-31 12:05:52 +03:00
parent 81b875023b
commit a3d539d1e2
2 changed files with 7 additions and 6 deletions

3
next-env.d.ts vendored
View File

@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference path="./.next/types/routes.d.ts" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View File

@ -32,13 +32,13 @@
// "node_modules"
// ]
// }
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
"@/*": [
"src/*"
]
},
"lib": [
"dom",
@ -60,7 +60,8 @@
{
"name": "next"
}
]
],
"target": "ES2017"
},
"include": [
"next-env.d.ts",
@ -72,4 +73,3 @@
"node_modules"
]
}