UNPKG

codepunter-react-wheelpicker

Version:

A customizable React wheel picker bringing iOS-like functionality to the web, maintained by CodePunter.

16 lines (15 loc) 821 B
{ "compilerOptions": { "target": "ES6", // Transpile to ES6 JavaScript "module": "commonjs", // Use CommonJS modules "declaration": true, // Generate .d.ts declaration files "emitDeclarationOnly": true, // Only generate declaration files (no JS) "outDir": "./dist", // Output directory for all transpiled files "jsx": "react", // Enable JSX support for React "strict": true, // Enable all strict type checking "esModuleInterop": true, // Allow default imports for CommonJS modules "skipLibCheck": true // Skip type checking for library dependencies }, "include": ["src"], // Include the `src` folder "exclude": ["node_modules", "dist"] // Exclude these folders }