2026-07-29 21:22:47 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
2026-07-30 14:48:06 +08:00
|
|
|
"allowImportingTsExtensions": true,
|
2026-07-29 21:22:47 +08:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@workspace/blocks/*": ["./src/*"],
|
2026-07-30 14:48:06 +08:00
|
|
|
"@workspace/i18n": ["../i18n/src/index.ts"],
|
2026-07-29 21:22:47 +08:00
|
|
|
"@workspace/ui/*": ["../ui/src/*"]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|