mirror of
https://github.com/lucide-icons/lucide.git
synced 2026-08-29 11:38:25 +02:00
* Ignore linting for examples in docs * Formatting JSX single attribute per line * Separte `format` and `lint:format` in package.json * Bump prettier version * Run format
20 lines
462 B
JSON
20 lines
462 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "ESNext",
|
|
"lib": ["es2019", "DOM"],
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": false,
|
|
},
|
|
"exclude": ["node_modules"],
|
|
}
|