2026-05-31 09:36:07 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
2026-05-31 09:36:23 +08:00
|
|
|
"types": ["@testing-library/jest-dom"],
|
2026-05-31 09:36:07 +08:00
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2026-05-31 09:36:23 +08:00
|
|
|
"@Pika/ui/*": ["src/components/*"]
|
2026-05-31 09:36:07 +08:00
|
|
|
}
|
|
|
|
|
},
|
2026-05-31 09:36:23 +08:00
|
|
|
"include": ["src"],
|
2026-05-31 09:36:07 +08:00
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|
2026-05-31 09:36:23 +08:00
|
|
|
|