- ErrorCapture.ts: global → globalThis,移除 declare global 冲突 - index.ts: 移除不存在的 UpdateDownloadProgress 导出 - 各 package.json 版本号对齐 Co-Authored-By: Claude <noreply@anthropic.com>
31 行
1.0 KiB
JSON
31 行
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@react-native-async-storage/async-storage": ["src/shims/async-storage.ts"],
|
|
"@nozbe/watermelondb": ["src/shims/watermelondb.ts"],
|
|
"@nozbe/watermelondb/decorators": ["src/shims/watermelondb.ts"],
|
|
"@nozbe/watermelondb/adapters/sqlite": ["src/shims/watermelondb.ts"],
|
|
"@xuqm/rn-common": ["packages/common/src"],
|
|
"@xuqm/rn-im": ["packages/im/src"],
|
|
"@xuqm/rn-license": ["packages/license/src"],
|
|
"@xuqm/rn-log": ["packages/log/src"],
|
|
"@xuqm/rn-push": ["packages/push/src"],
|
|
"@xuqm/rn-update": ["packages/update/src"],
|
|
"@xuqm/rn-xwebview": ["packages/xwebview/src"]
|
|
},
|
|
"strict": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react-native",
|
|
"lib": ["ES2020"],
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|