Compare commits

...

1 Commits

Author SHA1 Message Date
a3d539d1e2 modified next-env ve tsconfig files 2025-08-31 12:05:52 +03:00
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" />
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
/// <reference path="./.next/types/routes.d.ts" />
// NOTE: This file should not be edited // 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" // "node_modules"
// ] // ]
// } // }
{ {
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@/*": ["src/*"] "@/*": [
"src/*"
]
}, },
"lib": [ "lib": [
"dom", "dom",
@ -60,7 +60,8 @@
{ {
"name": "next" "name": "next"
} }
] ],
"target": "ES2017"
}, },
"include": [ "include": [
"next-env.d.ts", "next-env.d.ts",
@ -72,4 +73,3 @@
"node_modules" "node_modules"
] ]
} }