- Removed turbopack configuration from next.config.ts. - Updated @kevisual/router from ^0.0.53 to ^0.0.60 in package.json. - Updated antd from ^6.2.0 to ^6.2.1 in package.json. - Updated es-toolkit from ^1.43.0 to ^1.44.0 in package.json. - Updated next from 16.1.2 to 16.1.4 in package.json. - Modified query.ts to improve URL handling for API routing. - Updated tsconfig.json to include baseUrl and typeRoots for better module resolution.
28 lines
465 B
JSON
28 lines
465 B
JSON
{
|
|
"extends": "@kevisual/types/json/next.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"baseUrl": "./",
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
"**/*.mts",
|
|
"dist/types/**/*.ts",
|
|
"dist/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |