2026-07-08 16:42:08 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
|
"lib": ["ES2023"],
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
2026-07-10 18:10:45 +08:00
|
|
|
"allowImportingTsExtensions": true,
|
2026-07-08 16:42:08 +08:00
|
|
|
"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
|
|
|
|
|
},
|
2026-07-16 17:26:23 +08:00
|
|
|
"include": ["packages/core/src/**/*", "packages/cli/src/**/*", "tests/**/*"],
|
2026-07-09 16:25:59 +08:00
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"app",
|
|
|
|
|
"dist",
|
|
|
|
|
"release",
|
|
|
|
|
"tests/app-*.test.mjs",
|
|
|
|
|
"tests/recap-capture-query.test.mjs"
|
|
|
|
|
]
|
2026-07-08 16:42:08 +08:00
|
|
|
}
|