2026-07-08 16:42:08 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
|
"lib": ["ES2023"],
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"checkJs": false,
|
2026-07-08 16:59:30 +08:00
|
|
|
"erasableSyntaxOnly": true,
|
2026-07-08 16:42:08 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["scripts/**/*", "tests/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "app", "dist", "release"]
|
|
|
|
|
}
|