mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-14 03:30:19 +00:00
44776b40bc
* build: upgrade node 24 * build: run pnpm update * fix: tsgo not support baseUrl
19 lines
440 B
JSON
19 lines
440 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"types": ["node", "@cucumber/cucumber", "@playwright/test"],
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["../*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "reports"],
|
|
"extends": "../tsconfig.json",
|
|
"include": ["src/**/*", "*.js"]
|
|
}
|