mirror of
https://github.com/diffusionstudio/lottie.git
synced 2026-09-14 13:40:33 +08:00
44f6b416fa
- Updated .gitignore to include new build and environment files. - Upgraded dependencies in package.json and bun.lock, including major updates for canvaskit-wasm and tailwind-merge. - Removed outdated package-lock.json and tsconfig files. - Replaced React with Solid.js for improved performance and reactivity. - Introduced new components and updated the app structure for better organization. - Added new SVG icons and fonts for enhanced UI. - Updated index.html and CSS for improved styling and layout consistency.
26 lines
471 B
JSON
26 lines
471 B
JSON
{
|
|
"compilerOptions": {
|
|
// General
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"target": "ESNext",
|
|
|
|
// Modules
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
|
|
// Type Checking & Safety
|
|
"strict": true,
|
|
"types": ["vite/client"],
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|