@arolariu/components
Version:
🎨 60+ beautiful, accessible React components built on Radix UI. TypeScript-first, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡
59 lines (58 loc) • 1.79 kB
JSON
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": false,
"checkJs": false,
"alwaysStrict": true,
"noEmit": false,
"declarationMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"erasableSyntaxOnly": true,
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noErrorTruncation": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnreachableCode": false,
"allowImportingTsExtensions": false,
"allowArbitraryExtensions": true,
"diagnostics": true,
"extendedDiagnostics": true,
"pretty": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"removeComments": false,
"allowUnusedLabels": false,
"declaration": true,
"sourceMap": true,
"declarationDir": "dist/types",
"emitDeclarationOnly": true,
"outDir": "dist",
"rootDir": "src",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"types": ["@types/node", "@types/react", "@types/react-dom"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "**/*.{test,stories}.{ts,tsx}"]
}