mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-27 13:29:15 +07:00
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"]
|
|
}
|