mirror of
https://github.com/lucide-icons/lucide.git
synced 2026-05-18 11:56:26 +02:00
* Add aria hidden to lucide package * Add aria-hidden to astro package * Add tests for shared package * Fix test for props * add aria prop to lucide-solid * Add aria-hidden to lucide-vue-next * Add aria-hidden prop to angular package * Fix builds * Add notice about aria-label in docs * Format code * Update packages/svelte/tests/Icon.spec.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update packages/lucide-svelte/tests/Icon.spec.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update packages/shared/src/utils/hasA11yProp.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Adjusted docs * Fix import * update tests * test(shared): fix hasA11yProp unit test * fix(packages/lucide-angular): fix hasA11yProp import path (non-relative import path will not get properly resolved by ng-packagr) * Format code * Adjust aria props to root element * Format code --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Karsa <contact@karsa.org>
27 lines
684 B
JSON
27 lines
684 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"declaration": false,
|
|
"noEmitOnError": true,
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"lib": ["esnext", "dom"],
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowImportingTsExtensions": true,
|
|
"downlevelIteration": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"jsx": "react-jsx",
|
|
"types": ["@testing-library/jest-dom"],
|
|
},
|
|
"exclude": ["**/node_modules"],
|
|
"include": ["src", "tests"],
|
|
}
|