mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-15 21:27:42 +01: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
26 lines
646 B
JSON
26 lines
646 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,
|
|
"outDir": "./dist",
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"types": ["@testing-library/jest-dom"],
|
|
},
|
|
"exclude": ["**/node_modules"],
|
|
}
|