mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 17:56:20 +01:00
* eslint rules for SVGS * apply options * Add typescript eslinter * Make eslint work with the codebase * Format icons * Test svg * Add workflow * Fix lint command * Revert duplicated aliases * Update .eslintrc.js Co-authored-by: Jakob Guddas <github@jguddas.de> * Update .eslintrc.js Co-authored-by: Jakob Guddas <github@jguddas.de> * Move linter to separate workflow * Add pnpm install * Revert icon changes * Test eslint workflow * turn of fail lint-contributors * Revert theater * process feedback --------- Co-authored-by: Jakob Guddas <github@jguddas.de>
21 lines
486 B
JSON
21 lines
486 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,
|
|
"downlevelIteration": true,
|
|
"sourceMap": true,
|
|
}
|
|
}
|