mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-14 20:27:42 +01:00
* Adjust typescript types * adjust types * fix types in all helper files * Fix types * Migrate js files to ts files * Refactor to TS files * Rename extentions * Adjust imports * Fix builds * Update lockfile * Fix last typescript migration * Fix entry path @lucide/outline-svg * Fix types * add checkout step * format files * Format files
22 lines
527 B
JSON
22 lines
527 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,
|
|
},
|
|
}
|