Files

30 lines
733 B
JSON
Raw Permalink Normal View History

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 18:34:36 +08:00
"lib": ["ES2020", "DOM", "DOM.Iterable"], "baseUrl": ".",
2026-05-31 09:36:07 +08:00
"paths": {
2026-05-31 18:34:36 +08:00
"@rustUI/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